@platformbuilders/react-native-ui
Version:
Platform Builders Shared Components Library
19 lines • 558 B
TypeScript
import { FC } from 'react';
import { StyleProp, ViewStyle, TextStyle } from 'react-native';
declare type Props = {
id: string;
accessibility: string;
checked?: boolean;
label?: string;
labelBefore?: string;
error?: string;
onPress?(): void;
labelStyle?: StyleProp<TextStyle>;
style?: StyleProp<ViewStyle>;
checkBoxColor?: string;
checkedCheckBoxColor?: string;
uncheckedCheckBoxColor?: string;
};
declare const CheckboxComponent: FC<Props>;
export default CheckboxComponent;
//# sourceMappingURL=index.d.ts.map