import * as React from 'react'; import Svg, {SvgProps, Rect, Path} from 'react-native-svg'; interface IProps extends SvgProps { checked?: boolean; } const SvgComponent = ({checked = false, ...rest}: IProps) => ( {checked && ( <> )} ); export default SvgComponent;