mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
16 lines
325 B
TypeScript
16 lines
325 B
TypeScript
import React from "react";
|
|
|
|
export default function CheckIcon() {
|
|
return (
|
|
<svg className="h-6" viewBox="0 0 24 24" fill="none">
|
|
<path
|
|
d="M4 12.6111L8.92308 17.5L20 6.5"
|
|
stroke="green"
|
|
strokeWidth="2"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|