import clsx from "clsx"; import "./Switch.scss"; export type SwitchProps = { name: string; checked: boolean; title?: string; onChange: (value: boolean) => void; disabled?: boolean; }; export const Switch = ({ title, name, checked, onChange, disabled = false, }: SwitchProps) => { return (