new-personal-site/components/lib/svgs/CheckMarkSVG.tsx

19 lines
500 B
TypeScript
Raw Normal View History

2025-01-05 06:25:38 +00:00
export default function CheckMarkSVG({ color }: { color?: string }) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
className="lucide lucide-check"
>
<path d="M20 6 9 17l-5-5" />
</svg>
);
}