svelte-society / recipes-mvp

this repo has been archived - pls head to https://github.com/svelte-society/sveltesociety.dev/tree/master/src/pages/recipes to contribute recipes!
https://github.com/svelte-society/sveltesociety.dev/tree/master/src/pages/recipes
MIT License
289 stars 18 forks source link

Adds svg icon recipe #25

Closed babycourageous closed 4 years ago

babycourageous commented 4 years ago

Initial recipe for SVG Icon System.

swyxio commented 4 years ago

cool! lgtm!

frederikhors commented 4 years ago

@babycourageous what about a simple {@html icon}?

Where icon is a .svg file like:

<svg class="icon" width="40" height="32" viewBox="0 0 28 28"><path d="..."/></svg>
swyxio commented 4 years ago

why not use <img src="icon.svg">?