import { Button } from "@components/Button"; import { Label } from "@components/Label"; import { Checkbox } from "@components/Checkbox"; import { TabProvider, TabTrigger, TabContent, TabList } from "@components/Tabs"; import { Story } from "@/components/Story"; import { LoadedCode } from "@/components/LoadedCode"; import { CheckboxDemo } from "./CheckboxBlocks/Preview"; import Examples from "./CheckboxBlocks/Examples"; # Checkbox A control that allows the user to toggle between checked and not checked. Preview Code ## Installation 1. Create a new file `Checkbox.mdx` in your component folder. 2. Copy and paste the following code into the file. ## Usage ```tsx import { Checkbox } from "@components/Checkbox"; ``` ```html ``` ## Props ### Variants | Prop | Type | Default | Description | | :---- | :---- | :------- | :----------- | | `size` | `"base" \| "md" \| "lg"` | `"md"` | The size of the checkbox | ## Examples ### Text Preview Code ### Disabled Preview Code