You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
461 B
20 lines
461 B
2 months ago
|
import React from 'react';
|
||
|
import Svg, { Path } from 'react-native-svg';
|
||
|
|
||
|
interface CheckIconProps {
|
||
|
size?: number;
|
||
|
color?: string;
|
||
|
}
|
||
|
|
||
|
const CheckIcon: React.FC<CheckIconProps> = ({ size = 24, color = '#000000' }) => {
|
||
|
return (
|
||
|
<Svg width={size} height={size} viewBox="0 0 24 24" fill="none">
|
||
|
<Path
|
||
|
d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"
|
||
|
fill={color}
|
||
|
/>
|
||
|
</Svg>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default CheckIcon;
|