9 lines
266 B
TypeScript
9 lines
266 B
TypeScript
export const CheckIndicatorSvg = (props: React.SVGProps<SVGSVGElement>) => (
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
|
|
<path
|
|
fill="currentColor"
|
|
d="M9 16.17L4.83 12l-1.42 1.41L9 19L21 7l-1.41-1.41z"
|
|
/>
|
|
</svg>
|
|
);
|