import { FC } from 'react' import Svg, { Path } from 'react-native-svg' import { SvgIconProps } from '../types' const CheckMarkIcon: FC = ({ width = '24', height = '24', ...props }) => ( ) export default CheckMarkIcon