Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
20 lines
676 B
XML
20 lines
676 B
XML
export default function UserIcon({ className = 'size-6' }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
fill="none"
|
|
viewBox="0 0 12 16"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M5.8125 0C3.84499 0 2.25 1.59499 2.25 3.5625C2.25 5.53001 3.84499 7.125 5.8125 7.125C7.78001 7.125 9.375 5.53001 9.375 3.5625C9.375 1.59499 7.78001 0 5.8125 0Z"
|
|
fill="currentColor"
|
|
/>
|
|
<path
|
|
d="M3.5625 8.25C1.59499 8.25 0 9.84499 0 11.8125C0 13.78 1.59499 15.375 3.5625 15.375H8.0625C10.03 15.375 11.625 13.78 11.625 11.8125C11.625 9.84499 10.03 8.25 8.0625 8.25H3.5625Z"
|
|
fill="currentColor"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|