import { motion } from "framer-motion"; import "./Switch.css"; import type { SwitchProps } from "../types/SwitchProps"; export default function Switch(props: SwitchProps) { const toggleSwitch = () => { const newIsOn = !props.state; props.onChange(newIsOn); }; return (