Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
16 lines
779 B
XML
16 lines
779 B
XML
export default function UsersIcon({ className = 'size-4' }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
fill="none"
|
|
viewBox="0 0 16 11"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M5.6 4.745A3.17 3.17 0 0 1 4.667 2.5c0-.878.357-1.672.933-2.245A2.5 2.5 0 1 0 5.6 4.745ZM5.333 2.5a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0ZM10.066.255A3.17 3.17 0 0 1 11 2.5a3.17 3.17 0 0 1-.934 2.245 2.5 2.5 0 1 0 0-4.49ZM3.333 8.5A2.5 2.5 0 0 1 5.833 6h4a2.5 2.5 0 1 1 0 5h-4a2.5 2.5 0 0 1-2.5-2.5ZM0 7.833a2.5 2.5 0 0 1 2.5-2.5h3.333a3.167 3.167 0 0 0-2.582 5H2.5a2.5 2.5 0 0 1-2.5-2.5ZM13 8.5c0 .683-.216 1.316-.584 1.833h.75a2.5 2.5 0 0 0 0-5H9.834A3.167 3.167 0 0 1 13 8.5Z"
|
|
fill="currentColor"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|