carbon-components-svelte/tests/ContentSwitcher.test.svelte
2024-11-11 21:35:48 -08:00

15 lines
456 B
Svelte

<script lang="ts">
import { ContentSwitcher, Switch } from "carbon-components-svelte";
import Analytics from "carbon-icons-svelte/lib/Analytics.svelte";
</script>
<ContentSwitcher size="xl" selectedIndex={1}>
<Switch disabled text="Latest news" />
<Switch text="Trending" />
<Switch>
<div style="display: flex; align-items: center;">
<Analytics style="margin-right: 0.5rem;" />
Trending
</div>
</Switch>
</ContentSwitcher>