Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
16 lines
1.1 KiB
XML
16 lines
1.1 KiB
XML
export default function HomeFillIcon({ className = 'size-[21px]' }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
fill="none"
|
|
viewBox="0 0 21 21"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M4.78341 2.96556C7.45023 1.028 8.78364 0.0592252 10.3065 0.00336104C10.4286 -0.00112035 10.5509 -0.00112035 10.6731 0.00336104C12.1959 0.0592252 13.5293 1.028 16.1961 2.96556C18.8629 4.90311 20.1963 5.87189 20.72 7.30291C20.762 7.41771 20.7998 7.534 20.8333 7.65157C21.2508 9.11711 20.7414 10.6846 19.7228 13.8197L18.0018 19.1164C17.7283 19.958 16.944 20.5279 16.0591 20.5279C14.931 20.5279 14.0165 19.6133 14.0165 18.4852V15.7363C14.0165 14.6778 13.1584 13.8197 12.0998 13.8197H8.87967C7.82115 13.8197 6.96304 14.6778 6.96304 15.7363V18.4852C6.96304 19.6133 6.04852 20.5279 4.9204 20.5279C4.03547 20.5279 3.25118 19.958 2.97773 19.1164L1.2567 13.8197C0.238068 10.6846 -0.271248 9.11711 0.146197 7.65157C0.179685 7.534 0.217472 7.41771 0.259483 7.30291C0.783189 5.87189 2.1166 4.90311 4.78341 2.96556Z"
|
|
fill="currentColor"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|