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

31 lines
2.2 KiB
XML

export default function UserFillIcon({ className = 'size-6' }) {
return (
<svg
className={className}
fill="none"
viewBox="0 0 32 32"
xmlns="http://www.w3.org/2000/svg"
>
<g clipPath="url(#clip0_905_487)">
<path
d="M15.772 15.4145C17.8896 15.4145 19.7234 14.655 21.2217 13.1564C22.72 11.6582 23.4795 9.82491 23.4795 7.707C23.4795 5.58982 22.72 3.75633 21.2214 2.25756C19.7229 0.759519 17.8894 0 15.772 0C13.6541 0 11.8208 0.759519 10.3225 2.2578C8.82422 3.75609 8.06445 5.58958 8.06445 7.707C8.06445 9.82491 8.82422 11.6584 10.3228 13.1567C11.8213 14.6547 13.6548 15.4145 15.772 15.4145Z"
fill="currentColor"
/>
<path
d="M29.2581 24.6064C29.2148 23.9829 29.1274 23.3027 28.9988 22.5844C28.8689 21.8608 28.7017 21.1767 28.5015 20.5515C28.2947 19.9053 28.0134 19.2671 27.6658 18.6555C27.3049 18.0207 26.8811 17.468 26.4055 17.0132C25.9082 16.5373 25.2993 16.1548 24.5952 15.8757C23.8936 15.5981 23.116 15.4575 22.2842 15.4575C21.9575 15.4575 21.6416 15.5916 21.0315 15.9888C20.656 16.2336 20.2168 16.5168 19.7266 16.8301C19.3074 17.0972 18.7395 17.3474 18.0381 17.574C17.3538 17.7954 16.6589 17.9077 15.9731 17.9077C15.2874 17.9077 14.5928 17.7954 13.9077 17.574C13.207 17.3476 12.6392 17.0974 12.2205 16.8303C11.7349 16.52 11.2954 16.2368 10.9143 15.9885C10.3049 15.5913 9.98877 15.4573 9.66211 15.4573C8.83008 15.4573 8.05273 15.5981 7.35132 15.876C6.64771 16.1545 6.03857 16.5371 5.54077 17.0134C5.06543 17.4685 4.64136 18.021 4.28101 18.6555C3.93359 19.2671 3.65234 19.905 3.44531 20.5517C3.24536 21.177 3.07812 21.8608 2.94824 22.5844C2.81958 23.3017 2.73218 23.9821 2.68896 24.6071C2.64648 25.2194 2.625 25.8549 2.625 26.4968C2.625 28.1672 3.15601 29.5195 4.20312 30.5168C5.2373 31.5009 6.60571 32.0002 8.26978 32.0002H23.678C25.342 32.0002 26.71 31.5012 27.7444 30.5168C28.7917 29.5202 29.3228 28.1677 29.3228 26.4965C29.3225 25.8518 29.3008 25.2158 29.2581 24.6064Z"
fill="currentColor"
/>
</g>
<defs>
<clipPath id="clip0_905_487">
<rect
fill="white"
height="32"
width="32"
/>
</clipPath>
</defs>
</svg>
)
}