Skip to content

Instantly share code, notes, and snippets.

@zachhardesty7
Last active December 29, 2019 20:23
Show Gist options
  • Save zachhardesty7/8484535ca356f033db03d0b3e8b26240 to your computer and use it in GitHub Desktop.
Save zachhardesty7/8484535ca356f033db03d0b3e8b26240 to your computer and use it in GitHub Desktop.
<!-- Icons.svelte -->
<script>
import { Icon } from "../components";
let className;
export { className as class };
export let inverse;
export let icons;
</script>
<div>
{#each icons as icon}
<Icon {inverse} class={className} {...icon} />
{/each}
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment