// Checkbox Widget - maps to shadcn/ui Checkbox import type { WidgetProps } from "@rjsf/utils"; import { Checkbox } from "@/components/ui/checkbox"; export function CheckboxWidget(props: WidgetProps) { const { id, value, disabled, readonly, onChange, label, schema } = props; return ( onChange(checked)} aria-label={label || schema.title || "Checkbox"} /> ); }