mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
9 lines
236 B
Svelte
9 lines
236 B
Svelte
<script lang="ts">
|
|
import { ContentSwitcher, Switch } from "carbon-components-svelte";
|
|
</script>
|
|
|
|
<ContentSwitcher>
|
|
<Switch text="Enabled" />
|
|
<Switch text="Disabled" disabled />
|
|
<Switch text="Also Enabled" />
|
|
</ContentSwitcher>
|