Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
18 lines
1.6 KiB
XML
18 lines
1.6 KiB
XML
export default function HeatIcon({ className = 'size-6' }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
fill="none"
|
|
viewBox="0 0 22 20"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
clipRule="evenodd"
|
|
d="M19.5968 1.68557C18.2693 0.331733 16.7914 -0.0870913 15.4035 0.0145124C14.0531 0.113369 12.837 0.699139 11.9488 1.26257C11.2484 1.70689 10.2514 1.70689 9.55091 1.26257C8.6627 0.699145 7.4466 0.113382 6.09624 0.0145278C4.70834 -0.0870739 3.23046 0.331747 1.9029 1.68557C0.33562 3.28386 -0.156097 5.25689 0.0413567 7.25265C0.236535 9.22542 1.10186 11.2308 2.25598 13.0078C3.41317 14.7896 4.89136 16.3892 6.37433 17.5508C7.82467 18.6868 9.40271 19.5 10.7499 19.5C12.0971 19.5 13.6751 18.6868 15.1254 17.5508C16.6084 16.3892 18.0866 14.7896 19.2438 13.0078C20.3979 11.2308 21.2632 9.22541 21.4584 7.25265C21.6558 5.25688 21.1641 3.28386 19.5968 1.68557ZM12.7523 2.52922C13.5377 2.03097 14.5099 1.58394 15.513 1.51051C16.4785 1.43983 17.5192 1.70923 18.5258 2.73579C19.7291 3.96282 20.1274 5.46987 19.9657 7.10497C19.8016 8.76307 19.0584 10.5393 17.9858 12.1908C16.9163 13.8376 15.5496 15.3132 14.2005 16.3699C12.8188 17.4521 11.5778 18 10.7499 18C9.922 18 8.68093 17.4521 7.29926 16.3699C5.95021 15.3132 4.58348 13.8376 3.51394 12.1908C2.44132 10.5393 1.69812 8.76307 1.53407 7.10497C1.3723 5.46987 1.77067 3.96283 2.9739 2.73579C3.98053 1.70925 5.02119 1.43984 5.98672 1.51052C6.98978 1.58395 7.96197 2.03098 8.74742 2.52922C9.93834 3.28467 11.5614 3.28467 12.7523 2.52922Z"
|
|
fill="currentColor"
|
|
fillRule="evenodd"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|