UNPKG

@ant-design/react-native

Version:

基于蚂蚁金服移动设计规范的 React Native 组件库

16 lines (15 loc) 620 B
import React from 'react'; import { StyleProp, TextStyle, ViewStyle } from 'react-native'; import { WithThemeStyles } from '../style'; import Checkbox from './Checkbox'; import { CheckboxItemPropsType } from './PropsType'; import { CheckboxStyle } from './style/index'; export interface CheckboxItemProps extends CheckboxItemPropsType, WithThemeStyles<CheckboxStyle> { checkboxStyle?: StyleProp<TextStyle>; style?: StyleProp<ViewStyle>; } export default class CheckboxItem extends React.Component<CheckboxItemProps, any> { checkbox: Checkbox | null; handleClick: () => void; render(): JSX.Element; }