mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-12 10:34:32 +08:00
Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
14 lines
241 B
Markdown
14 lines
241 B
Markdown
# `@gradio/checkbox`
|
|||
|
|||
```html
|
|||
<script>
|
|||
import { BaseCheckbox } from "@gradio/checkbox";
|
|||
</script>
|
|||
```
|
|||
|
|||
BaseCheckBox:
|
|||
```javascript
|
|||
export let value = false;
|
|||
export let label = "Checkbox";
|
|||
export let mode: "static" | "interactive";
|
|||
```
|