mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
13 lines
316 B
Svelte
13 lines
316 B
Svelte
<script lang="ts">
|
|
import { Toggle, ToggleSkeleton } from "../types";
|
|
</script>
|
|
|
|
<Toggle labelText="Push notifications" />
|
|
|
|
<Toggle labelText="Push notifications" toggled />
|
|
|
|
<Toggle labelText="Push notifications" labelA="No" labelB="Yes" />
|
|
|
|
<Toggle labelText="Push notifications" disabled />
|
|
|
|
<ToggleSkeleton />
|