UNPKG

rtaro-ui

Version:
22 lines (12 loc) 396 B
import { MouseEvent, ComponentClass } from 'react' import AtComponent from './base' export interface AtSwitchProps extends AtComponent { color?: string checked: boolean disabled?: boolean label?: string onChange?: (value: boolean) => void onClick?: (value: boolean) => void } declare const AtSwitch: ComponentClass<AtSwitchProps> export default AtSwitch