mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-17 03:01:25 +00:00
9 lines
181 B
Svelte
9 lines
181 B
Svelte
<script>
|
|
export let href = undefined;
|
|
</script>
|
|
|
|
<li class:bx--switcher__item={true}>
|
|
<a {href} class:bx--switcher__item-link={true} {...$$restProps}>
|
|
<slot />
|
|
</a>
|
|
</li>
|