import { Switch as BaseSwitch } from "@base-ui/react/switch"; import cn from "~/utils/cn"; export interface SwitchProps { label: string; className?: string; switchClassName?: string; name?: string; disabled?: boolean; checked?: boolean; defaultChecked?: boolean; onCheckedChange?: (checked: boolean) => void; } export default function Switch(props: SwitchProps) { return ( ); }