New Tasks
This commit is contained in:
@@ -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;
|
||||
Reference in New Issue
Block a user