import { ISwitchLabel } from "../types/switchLabel"; interface ISwitchToggleProps { labels: ISwitchLabel[]; currentLabel: ISwitchLabel; onClick: (label: ISwitchLabel) => void; } function SwitchToggle({ labels, currentLabel, onClick }: ISwitchToggleProps) { return (