checkmark icon added

This commit is contained in:
Hollgy 2024-03-05 21:40:44 +01:00
parent 12bcd2e659
commit caf5929e6d

View file

@ -152,3 +152,22 @@ export function ThumbDown(): JSXElement {
</svg> </svg>
); );
} }
export function CheckMark(): JSXElement {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="h-6 w-6"
>
<path
stroke-linecape="round"
stroke-linejoin="round"
d="m4.5 12.75 6 6 9-13.5"
/>
</svg>
);
}