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

27 lines
1.9 KiB
XML

export default function ShareIcon({ className = 'size-6' }: { className?: string }) {
return (
<svg
className={className}
fill="none"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<g clipPath="url(#clip0_867_1043)">
<path
d="M16.1104 12.2224C15.4799 12.2226 14.8589 12.3761 14.3009 12.6698C13.743 12.9635 13.2649 13.3885 12.9079 13.9082L7.4912 11.4624C7.87107 10.5296 7.87405 9.48571 7.49954 8.55072L12.9112 6.09322C13.4389 6.85884 14.2236 7.40995 15.1228 7.64656C16.0221 7.88317 16.9764 7.78961 17.8126 7.38286C18.6487 6.97611 19.3114 6.2831 19.6804 5.42958C20.0494 4.57605 20.1002 3.61854 19.8236 2.73075C19.547 1.84297 18.9614 1.08373 18.173 0.59077C17.3845 0.0978114 16.4455 -0.0962085 15.5262 0.0439098C14.607 0.184028 13.7684 0.649002 13.1627 1.35448C12.5569 2.05995 12.2241 2.95919 12.2245 3.88906C12.2245 4.11024 12.2432 4.33102 12.2804 4.54906L6.53787 7.15572C5.98428 6.63942 5.29204 6.29589 4.54606 6.16727C3.80007 6.03865 3.03277 6.13053 2.33824 6.43165C1.64371 6.73276 1.05216 7.23002 0.63612 7.86243C0.220084 8.49485 -0.00234847 9.23494 -0.0038981 9.99193C-0.00544772 10.7489 0.213953 11.4899 0.627397 12.124C1.04084 12.7581 1.63035 13.2578 2.32364 13.5618C3.01693 13.8657 3.78385 13.9607 4.53036 13.8352C5.27687 13.7096 5.9705 13.3689 6.5262 12.8549L12.2762 15.4524C12.1411 16.2383 12.2507 17.0467 12.5904 17.7682C12.9301 18.4896 13.4833 19.0892 14.1751 19.4858C14.8669 19.8823 15.6639 20.0566 16.4581 19.985C17.2523 19.9135 18.0053 19.5995 18.6151 19.0857C19.2249 18.5719 19.6621 17.883 19.8673 17.1125C20.0725 16.3419 20.0359 15.5269 19.7624 14.7778C19.489 14.0288 18.9919 13.3819 18.3385 12.9248C17.6851 12.4677 16.9078 12.2225 16.1104 12.2224Z"
fill="currentColor"
/>
</g>
<defs>
<clipPath id="clip0_867_1043">
<rect
fill="white"
height="20"
width="20"
/>
</clipPath>
</defs>
</svg>
)
}