New Tasks

This commit is contained in:
Possible
2024-06-25 23:51:51 +01:00
parent ca57235999
commit 967aec7bd1
117 changed files with 9108 additions and 46 deletions
+29
View File
@@ -0,0 +1,29 @@
import React from "react";
const CheckIcon = ({
className = "",
stroke = "#2D9F75",
onClick = () => {},
}) => {
return (
<svg
className={`${className}`}
onClick={onClick}
width="18"
height="16"
viewBox="0 0 18 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M1.5 10.4997L6.7451 14.6663L16.5 1.33301"
stroke={stroke}
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
};
export default CheckIcon;