Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Reference for Nuxt UI v4 (125+ components built on Reka UI + Tailwind CSS v4) including forms, overlays, and theming.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
components/checkbox.md
1# Checkbox23An input element to toggle between checked and unchecked states.45> Based on [Reka UI Checkbox](https://reka-ui.com/docs/components/checkbox)67## Key Props89- `label`: to set the label of the Checkbox.10- `description`: to set the description of the Checkbox.11- `icon`: to set the icon of the Checkbox when it is checked.12- `color`: to change the color of the Checkbox.13- `variant`: to change the variant of the Checkbox.14- `size`: to change the size of the Checkbox.15- `indicator`: to change the position or hide the indicator.16- `disabled`: to disable the Checkbox.1718## Usage1920```vue21<UCheckbox22<!-- props here -->23/>24```25