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