19 lines
441 B
TypeScript
19 lines
441 B
TypeScript
export default function Checked() {
|
|
return (
|
|
<svg
|
|
className="text-2xs mr-2 rounded-full bg-green-500 p-1 text-white"
|
|
fill="none"
|
|
width="19"
|
|
height="19"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="2"
|
|
viewBox="0 0 24 24"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<polyline points="20 6 9 17 4 12" />
|
|
</svg>
|
|
);
|
|
}
|