first commit on the UIShell

This commit is contained in:
adan.ulloa 2020-01-02 12:04:41 -06:00 committed by Adan Ulloa
commit 93b912240f
13 changed files with 492 additions and 0 deletions

View file

@ -0,0 +1,13 @@
<script>
// export let action = undefined;
// export let type = undefined;
export let icon = undefined;
// export let content = undefined;
import { cx } from '../../../lib';
import Icon from '../../Icon/Icon.svelte';
</script>
<button aria-label="Notifications" class={cx('--header__action')} type="button">
<Icon {...icon} render={icon[0].render} />
</button>