UNPKG

rtaro-ui

Version:
17 lines (10 loc) 369 B
import { ComponentClass } from 'react' import { CommonEvent } from '@rtarojs/components/types/common' export interface AtCheckboxProps { checked: boolean disabled?: boolean onChange: (value: boolean, event: CommonEvent) => void type?: 'default' | 'tag' } declare const AtCheckbox: ComponentClass<AtCheckboxProps> export default AtCheckbox