mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
* fix(types): add missing `$$restProps` for `Checkbox`, `Filename`, `FluidForm` * Run "yarn build:docs" * test: assert `$$restProps` for `Checkbox`, `Form`
15 lines
338 B
Svelte
15 lines
338 B
Svelte
<script lang="ts">
|
|
import { Checkbox } from "../types";
|
|
</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 />
|