type SwitchIconProps = { size?: string | number; className?: string; }; export default function SwitchIcon({ size = '1em', className }: SwitchIconProps) { return ( ); }