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