sgcart/app/components/checkBox/checkBox.props.ts
2026-07-03 13:10:46 +05:30

10 lines
260 B
TypeScript

import { StyleProp, ViewStyle, TextStyle } from 'react-native';
export interface CheckBoxProps {
value: boolean;
onValueChange: (newValue: boolean) => void;
label?: string;
containerStyle?: StyleProp<ViewStyle>;
labelStyle?: StyleProp<TextStyle>;
}