mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
15 lines
354 B
Svelte
15 lines
354 B
Svelte
<script lang="ts">
|
|
import { Checkbox } from "carbon-components-svelte";
|
|
</script>
|
|
|
|
<Checkbox labelText="Label text" style="margin: 1rem" />
|
|
|
|
<Checkbox labelText="Label text" checked />
|
|
|
|
<Checkbox labelText="Label text" indeterminate />
|
|
|
|
<Checkbox labelText="Label text" hideLabel />
|
|
|
|
<Checkbox labelText="Label text" disabled />
|
|
|
|
<Checkbox skeleton />
|