Skip to content

Instantly share code, notes, and snippets.

@firthous-dev
Created June 6, 2020 18:10
Show Gist options
  • Select an option

  • Save firthous-dev/466c1ee2af7beb4f0c17b258b7dd0ff6 to your computer and use it in GitHub Desktop.

Select an option

Save firthous-dev/466c1ee2af7beb4f0c17b258b7dd0ff6 to your computer and use it in GitHub Desktop.
<script>
import SvgIcon from '../components/SvgIcon.svelte'
import {bellIcon, userIcon} from '../svg/AppIcons'
//imported only required icon names
</script>
<nav>
<a href="/notifications">
<SvgIcon d={bellIcon} fill="red"/> <!-- used bellIcon as d attribute value -->
</a>
<a href="/profile">
<SvgIcon d={userIcon}/>
</a>
</nav>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment