Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
31 lines
2.4 KiB
XML
31 lines
2.4 KiB
XML
export default function ImageUploadIcon({ className = 'size-6' }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
fill="none"
|
|
height="52"
|
|
viewBox="0 0 52 52"
|
|
width="52"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M47.6667 30.1167V35.0784C47.6667 42.965 42.965 47.6667 35.0783 47.6667H16.9217C11.3967 47.6667 7.40999 45.3484 5.54666 41.2317L5.785 41.0584L16.445 33.9084C18.1783 32.7384 20.6267 32.8684 22.165 34.2117L22.9017 34.8184C24.5917 36.27 27.3217 36.27 29.0117 34.8184L38.025 27.0834C39.715 25.6317 42.445 25.6317 44.135 27.0834L47.6667 30.1167Z"
|
|
fill="currentColor"
|
|
/>
|
|
<path
|
|
d="M45.435 17.3335H39.065C36.3133 17.3335 34.6667 15.6868 34.6667 12.9352V6.56516C34.6667 5.6985 34.84 4.96183 35.1433 4.3335C35.1217 4.3335 35.1 4.3335 35.0783 4.3335H16.9217C9.03499 4.3335 4.33333 9.03516 4.33333 16.9218V35.0785C4.33333 37.4402 4.74499 39.4985 5.54666 41.2318L5.78499 41.0585L16.445 33.9085C18.1783 32.7385 20.6267 32.8685 22.165 34.2118L22.9017 34.8185C24.5917 36.2702 27.3217 36.2702 29.0117 34.8185L38.025 27.0835C39.715 25.6318 42.445 25.6318 44.135 27.0835L47.6667 30.1168V16.9218C47.6667 16.9002 47.6667 16.8785 47.6667 16.8568C47.0383 17.1602 46.3017 17.3335 45.435 17.3335Z"
|
|
fill="currentColor"
|
|
opacity="0.4"
|
|
/>
|
|
<path
|
|
d="M19.5 22.4901C22.348 22.4901 24.6567 20.1814 24.6567 17.3334C24.6567 14.4855 22.348 12.1768 19.5 12.1768C16.6521 12.1768 14.3433 14.4855 14.3433 17.3334C14.3433 20.1814 16.6521 22.4901 19.5 22.4901Z"
|
|
fill="currentColor"
|
|
/>
|
|
<path
|
|
d="M45.435 2.1665H39.065C36.3133 2.1665 34.6667 3.81317 34.6667 6.56484V12.9348C34.6667 15.6865 36.3133 17.3332 39.065 17.3332H45.435C48.1867 17.3332 49.8333 15.6865 49.8333 12.9348V6.56484C49.8333 3.81317 48.1867 2.1665 45.435 2.1665ZM47.4717 10.6815C47.255 10.8982 46.93 11.0498 46.5833 11.0715H43.5283L43.55 14.0832C43.5283 14.4515 43.3983 14.7548 43.1383 15.0148C42.9217 15.2315 42.5967 15.3832 42.25 15.3832C41.535 15.3832 40.95 14.7982 40.95 14.0832V11.0498L37.9167 11.0715C37.2017 11.0715 36.6167 10.4648 36.6167 9.74984C36.6167 9.03484 37.2017 8.44984 37.9167 8.44984L40.95 8.4715V5.43817C40.95 4.72317 41.535 4.1165 42.25 4.1165C42.965 4.1165 43.55 4.72317 43.55 5.43817L43.5283 8.44984H46.5833C47.2983 8.44984 47.8833 9.03484 47.8833 9.74984C47.8617 10.1182 47.71 10.4215 47.4717 10.6815Z"
|
|
fill="currentColor"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|