UNPKG

antd-mobile-rn

Version:

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

19 lines (18 loc) 645 B
import React from 'react'; import { ImageStyle, StyleProp, ViewStyle } from 'react-native'; import { CheckboxPropsType } from './PropsType'; import { ICheckboxStyle } from './style/index.native'; export interface AgreeItemNativeProps extends CheckboxPropsType { styles?: ICheckboxStyle; checkboxStyle?: StyleProp<ImageStyle>; style?: StyleProp<ViewStyle>; } export default class AgreeItem extends React.Component<AgreeItemNativeProps, any> { static defaultProps: { styles: { [x: string]: import("react-native").RegisteredStyle<any>; }; }; handleClick: () => void; render(): JSX.Element; }