checkmark icon added
This commit is contained in:
parent
12bcd2e659
commit
caf5929e6d
1 changed files with 19 additions and 0 deletions
|
@ -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>
|
||||||
|
);
|
||||||
|
}
|
Loading…
Reference in a new issue