gradio/js/checkbox
pngwn d95a1a44d6
chore: update versions (#7826)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-03-27 14:25:36 -07:00
..
shared
CHANGELOG.md chore: update versions (#7826) 2024-03-27 14:25:36 -07:00
Example.svelte Handle the case where examples is null for all components (#7192) 2024-01-29 16:51:22 -08:00
Index.svelte
package.json chore: update versions (#7826) 2024-03-27 14:25:36 -07:00
README.md

@gradio/checkbox

<script>
    import { BaseCheckbox } from "@gradio/checkbox";
</script>

BaseCheckBox:

	export let value = false;
	export let label = "Checkbox";
	export let mode: "static" | "interactive";