This commit is contained in:
Aman Chaturvedi
2022-12-09 14:42:21 +05:30
parent 1dd4a2996c
commit c70e3552c9

View File

@@ -2,10 +2,6 @@ import {IconProps} from '@components/Icons/types';
import * as React from 'react';
import Svg, {Rect, Mask, G, Path} from 'react-native-svg';
interface IRoundCheckIcon {
size?: number;
}
const RoundCheckIcon: React.FC<IconProps> = ({size = 32}) => (
<Svg width={size} height={size} viewBox={`0 0 ${size} ${size}`} fill="none">
<Rect width={size} height={size} rx={size / 2} fill="#0276FE" />