import { Label } from "@/components/ui/label"; import { Switch, SwitchProps } from "@/components/ui/switch"; type Props = Omit & { id: string; label: React.ReactNode; }; export function LabeledSwitch({ id, label, ...props }: Props) { return ( // reverse to apply peer style
); }