@janiscommerce/ui-native
Version:
components library for Janis app
16 lines (15 loc) • 524 B
TypeScript
import React from 'react';
import { ViewStyle } from 'react-native';
interface CheckBoxProps {
checked: boolean;
customSize?: number;
checkOnColor?: string;
checkOffColor?: string;
iconCheckColor?: string;
borderRadius?: number;
disabled?: boolean;
style?: ViewStyle;
onPress?: () => {};
}
declare const CheckBox: ({ checked, customSize, checkOnColor, checkOffColor, iconCheckColor, borderRadius, disabled, style, ...props }: CheckBoxProps) => React.JSX.Element;
export default CheckBox;