import * as React from 'react' import Svg, { Path } from 'react-native-svg' import Colors, { ColorValue } from 'src/styles/colors' type Props = { checked: boolean testID?: string checkedColor?: ColorValue uncheckedColor?: ColorValue } const CheckBox = ({ checked, testID, checkedColor = Colors.contentPrimary, uncheckedColor = Colors.inactive, }: Props) => { if (checked) return ( ) return ( ) } export default CheckBox