import React from 'react';
import Svg, { Path } from 'react-native-svg';
import { IconProps } from './utils/base';
export const Check = ({ fill, height, pathFill, size, stroke, width, ...rest }: IconProps) => {
const color = stroke ?? pathFill ?? fill ?? 'black';
return (
);
};
export const Tick = (props: IconProps) => ;