mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
first commit on the UIShell
This commit is contained in:
parent
ce469df6db
commit
93b912240f
13 changed files with 492 additions and 0 deletions
|
@ -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>
|
Loading…
Add table
Add a link
Reference in a new issue