import styles from './index.module.scss'; import { toggle } from '../../logic/toggleAppearance'; interface SwitchProps { onClick?: () => void; children: React.ReactNode; className?: string; id?: string; } export function Switch(props: SwitchProps) { return ( ); } export function SwitchAppearance() { return (
); }