import type { ChangeEventHandler } from 'react'; export interface SwitchProps { label: string; value: boolean; toggleAction: ChangeEventHandler; className?: string; } const nonInitialCaps = /(?!^)([A-Z])/g; export default function Switch({ label, value, toggleAction, className }: SwitchProps) { return (