mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-16 10:51:06 +00:00
11 lines
188 B
Svelte
11 lines
188 B
Svelte
<script>
|
|
export let href;
|
|
|
|
import { cx } from '../../../lib';
|
|
</script>
|
|
|
|
<li class={cx('--switcher__item')}>
|
|
<a class={cx('--switcher__item-link')} {href}>
|
|
<slot />
|
|
</a>
|
|
</li>
|