Skip to content

Commit

Permalink
Added check icon
Browse files Browse the repository at this point in the history
  • Loading branch information
yamanidev committed Nov 20, 2023
1 parent e3cb51d commit 69960dd
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/components/icons/CheckIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
function CheckIcon({ className }: { className?: string }) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
className={className}
viewBox="0 0 24 24">
<path
d="M10.0007 15.1709L19.1931 5.97852L20.6073 7.39273L10.0007 17.9993L3.63672 11.6354L5.05093 10.2212L10.0007 15.1709Z"
fill="#009736"></path>
</svg>
);
}

export default CheckIcon;

0 comments on commit 69960dd

Please sign in to comment.