import { motion } from "framer-motion"; import { cn } from "@/lib/utils"; import { useId } from "react"; export const Switch = ({ checked, setChecked, }: { checked: boolean; setChecked: (checked: boolean) => void; }) => { const id = useId(); return (
); };