import * as React from 'react'; interface Props { label?: string; onClick: React.MouseEventHandler; checked?: boolean; htmlId?: string; } const Switch = ({ label, onClick, checked, htmlId }: Props) => (