UNPKG

@xzchameleon/checkbox

Version:
16 lines (15 loc) 393 B
import { TextStyle } from "react-native"; import { FC } from "react"; interface CheckBoxProps{ checked?: boolean, checkedImg?: HTMLImageElement, unCheckedImg?: HTMLImageElement, imageStyle?: TextStyle, containerStyle?: TextStyle, text?: string, textStyle?: TextStyle, onChange?():void, disable?: boolean, } declare const CheckBox: FC<CheckBoxProps>; export default CheckBox;