UNPKG

artwork-react-native

Version:

artwork design master for react-native

21 lines (20 loc) 623 B
/// <reference types="react" /> /// <reference types="react-native" /> import React from 'react'; import { CheckboxItemProps } from './PropsType'; import { ICheckboxStyle } from './style'; export interface ICheckboxItemNativeProps extends CheckboxItemProps { styles?: ICheckboxStyle; checkboxStyle?: any; } export default class CheckboxItem extends React.Component<ICheckboxItemNativeProps, any> { static defaultProps: { styles: { [x: string]: number & { __registeredStyleBrand: any; }; }; }; handleClick: () => void; render(): JSX.Element; }