import React from 'react'; import CheckBox from '@react-native-community/checkbox'; import {Platform, StyleSheet} from 'react-native'; type CustomCheckBoxProps = { checkboxProp?: Partial>; theme: string; isActive?: boolean; }; const CustomCheckBox = ({ checkboxProp = {}, isActive = false, theme, }: CustomCheckBoxProps) => { const flattenedStyle = StyleSheet.flatten(checkboxProp.style) || {}; return ( ); }; export default CustomCheckBox;