admin/components/icons/HeartIcon.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

20 lines
1.2 KiB
XML

export default function HeartIcon({ className = 'size-6' }) {
return (
<svg
className={className}
fill="none"
height="15"
viewBox="0 0 15 15"
width="15"
xmlns="http://www.w3.org/2000/svg"
>
<path
clipRule="evenodd"
d="M14.5913 2.04754C15 2.8497 15 3.8998 15 6V6.88816C15 8.15502 15 8.78845 14.8485 9.30514C14.4891 10.5307 13.5307 11.4891 12.3051 11.8485C11.7884 12 11.155 12 9.88816 12H9.47655L9.42773 12.0001C8.66255 12.005 7.91718 12.2438 7.29168 12.6846L7.25191 12.7129L5.29386 14.1115C4.62262 14.591 3.74057 13.8986 4.04693 13.1327C4.26394 12.5902 3.86438 12 3.28006 12H2.82874C1.26647 12 0 10.7335 0 9.17126V6C0 3.8998 0 2.8497 0.408726 2.04754C0.768251 1.34193 1.34193 0.768251 2.04754 0.408726C2.8497 0 3.8998 0 6 0H9C11.1002 0 12.1503 0 12.9525 0.408726C13.6581 0.768251 14.2317 1.34193 14.5913 2.04754ZM8.10025 3.42972C8.72788 3.0316 9.74148 2.65512 10.6168 3.54777C12.6947 5.66676 9.13131 9.75 7.50001 9.75C5.8687 9.75 2.30532 5.66676 4.3832 3.54777C5.25852 2.65513 6.27211 3.0316 6.89973 3.42972C7.25437 3.65468 7.74562 3.65468 8.10025 3.42972Z"
fill="currentColor"
fillRule="evenodd"
/>
</svg>
)
}