new-personal-site/components/lib/svgs/CheckMarkSVG.tsx
Benjamin Toby 5587024789 Updates
2025-01-05 07:25:38 +01:00

19 lines
500 B
TypeScript

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>
);
}