import * as React from 'react'; import { cx } from '../../utils/cx'; import { Icon } from '../Icon'; export type SwitchProps = { id: string; onChange: (event: React.ChangeEvent) => void; checked?: boolean; disabled?: boolean; label?: string; className?: string; }; export const Switch = ({ onChange, id, label = '', checked = false, disabled = false, className = '', }: SwitchProps): JSX.Element => { return ( ); };