rtaro-ui
Version:
UI KIT for Taro
17 lines (10 loc) • 369 B
TypeScript
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