// @ts-nocheck import { Icon } from "./icon" import * as mod from "./checkbox" import { create } from "../storybook/scaffold" const docs = `### Overview Checkbox control for multi-select or agreement inputs. Use in forms and multi-select lists. ### API - Uses Kobalte Checkbox props (\`checked\`, \`defaultChecked\`, \`onChange\`). - Optional: \`hideLabel\`, \`description\`, \`icon\`. - Children render as the label. ### Variants and states - Checked/unchecked, indeterminate, disabled (via Kobalte). ### Behavior - Controlled or uncontrolled usage. ### Accessibility - TODO: confirm aria attributes from Kobalte. ### Theming/tokens - Uses \`data-component="checkbox"\` and related slots. ` const story = create({ title: "UI/Checkbox", mod, args: { children: "Checkbox", defaultChecked: true } }) export default { title: "UI/Checkbox", id: "components-checkbox", component: story.meta.component, tags: ["autodocs"], parameters: { docs: { description: { component: docs, }, }, }, } export const Basic = story.Basic export const States = { render: () => (