import { Switch as AriaSwitch } from 'react-aria-components'; import { cn } from '~/utils/cn'; type SwitchProps = Parameters[0] & { readonly label: string; }; export default function Switch(props: SwitchProps) { return (
); }