mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
19 lines
408 B
Svelte
19 lines
408 B
Svelte
<script lang="ts">
|
|
import { Toggle, ToggleSkeleton } from "carbon-components-svelte";
|
|
</script>
|
|
|
|
<Toggle labelText="Push notifications" hideLabel />
|
|
|
|
<Toggle
|
|
labelText="Push notifications"
|
|
toggled
|
|
on:toggle={(e) => {
|
|
console.log(e.detail.toggled);
|
|
}}
|
|
/>
|
|
|
|
<Toggle labelText="Push notifications" labelA="No" labelB="Yes" />
|
|
|
|
<Toggle labelText="Push notifications" disabled />
|
|
|
|
<ToggleSkeleton />
|