Skip to content

Instantly share code, notes, and snippets.

@dennis-f
Forked from firthous-dev/SvgIcon.svelte
Last active June 12, 2020 07:04
Show Gist options
  • Select an option

  • Save dennis-f/843e35d565acbc4e4e6c787a612530b7 to your computer and use it in GitHub Desktop.

Select an option

Save dennis-f/843e35d565acbc4e4e6c787a612530b7 to your computer and use it in GitHub Desktop.
<script>
export let fill = 'none'
export let d = ''
export let stroke = '#4A5568';
export let width = '24';
export let height = '24';
</script>
<svg class="icon" {width} {height} viewBox="0 0 {width} {height}" {fill} xmlns="http://www.w3.org/2000/svg">
<path {d} {stroke} stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<style>
svg {
position: relative;
top:5px;
left:5px;
margin-right:10px;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment