admin/components/icons/HeatIconFill.tsx
alisaza e1eaf5eff5 feat: initial ghabilee-admin backoffice app
Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js
app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
2026-09-05 13:12:59 +03:30

16 lines
560 B
TypeScript

export default function HeatIconFill({ className = 'size-6' }: { className?: string }) {
return (
<svg
className={className}
fill="none"
viewBox="0 0 14 12"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M12.2077 0.973809C10.6515 -0.61312 8.84956 0.05617 7.73379 0.763952C7.10333 1.16388 6.22999 1.16388 5.59953 0.763954C4.48376 0.0561784 2.68181 -0.613102 1.12569 0.973811C-2.56832 4.74091 3.76658 12 6.66668 12C9.56678 12 15.9017 4.74091 12.2077 0.973809Z"
fill="currentColor"
/>
</svg>
)
}