import React from 'react' import { toggle } from '../../utils/toggleAppearance' import styles from './index.module.scss' import type { PropsWithIsland } from 'shared/types' interface SwitchProps { onClick?: () => void children: React.ReactNode className?: string id?: string } export function Switch(props: SwitchProps) { return ( ) } export const SwitchAppearance: React.FC = () => { return (
) }