mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
13 lines
301 B
Svelte
13 lines
301 B
Svelte
<script lang="ts">
|
|
import { ContentSwitcher, Switch } from "carbon-components-svelte";
|
|
</script>
|
|
|
|
<ContentSwitcher size="sm">
|
|
<Switch text="Small 1" />
|
|
<Switch text="Small 2" />
|
|
</ContentSwitcher>
|
|
|
|
<ContentSwitcher size="xl">
|
|
<Switch text="XL 1" />
|
|
<Switch text="XL 2" />
|
|
</ContentSwitcher>
|