mango-v4-ui/components/icons/AcornIcon.tsx

15 lines
1.0 KiB
TypeScript
Raw Normal View History

2023-06-12 21:41:59 -07:00
const AcornIcon = ({ className }: { className?: string }) => {
return (
<svg
className={`${className}`}
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 41 41"
fill="currentColor"
>
<path d="M40.4541 21.4438L39.5997 15.0351C39.1822 11.8973 37.8759 9.04389 35.9517 6.72311L39.9648 2.71002C40.5513 2.12497 40.5513 1.1793 39.9648 0.594242C39.3797 0.00918573 38.4356 0.00918573 37.849 0.594242L33.8434 4.59986C31.5077 2.64418 28.6303 1.31995 25.4611 0.895L19.0524 0.0406098C17.9092 -0.11351 16.7361 0.170786 15.7665 0.897991L14.4991 1.84964C13.7719 2.3928 13.6926 3.45817 14.339 4.10458L36.3931 26.1586C37.0724 26.838 38.1288 26.6898 38.648 26L39.5982 24.7312C40.306 23.784 40.6097 22.6154 40.4541 21.4438ZM12.2203 6.21886L12.1664 6.1635L7.02061 9.76511C2.05138 13.244 -0.595588 19.1469 0.113662 25.1726L1.30023 35.2622C1.54413 37.3346 3.16164 38.9521 5.23402 39.196L15.3236 40.3825C21.3463 41.0858 27.2522 38.4448 30.7311 33.4756L34.3327 28.3298L34.2773 28.2759L12.2203 6.21886Z" />
</svg>
)
}
export default AcornIcon