1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee
Files
inke/apps/web/ui/shared/icons/checked.tsx
2023-11-10 14:59:47 +08:00

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