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