Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
24 lines
1.2 KiB
XML
24 lines
1.2 KiB
XML
export default function UserPlusIcon({ className = 'size-4' }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M18.75 15C18.75 14.5858 18.4142 14.25 18 14.25C17.5858 14.25 17.25 14.5858 17.25 15V17.25H15C14.5858 17.25 14.25 17.5858 14.25 18C14.25 18.4142 14.5858 18.75 15 18.75H17.25V21C17.25 21.4142 17.5858 21.75 18 21.75C18.4142 21.75 18.75 21.4142 18.75 21V18.75H21C21.4142 18.75 21.75 18.4142 21.75 18C21.75 17.5858 21.4142 17.25 21 17.25H18.75V15Z"
|
|
fill="currentColor"
|
|
/>
|
|
<path
|
|
d="M6 6.75C6 4.12665 8.12665 2 10.75 2C13.3734 2 15.5 4.12665 15.5 6.75C15.5 9.37335 13.3734 11.5 10.75 11.5C8.12665 11.5 6 9.37335 6 6.75Z"
|
|
fill="currentColor"
|
|
/>
|
|
<path
|
|
d="M3 17.75C3 15.1266 5.12665 13 7.75 13H13.75C14.7296 13 15.64 13.2966 16.3963 13.8048C16.1474 14.1382 16 14.5519 16 15V16H15C13.8954 16 13 16.8954 13 18C13 19.1046 13.8954 20 15 20H16V21C16 21.2968 16.0647 21.5785 16.1807 21.8318C15.4696 22.2562 14.6383 22.5 13.75 22.5H7.75C5.12665 22.5 3 20.3734 3 17.75Z"
|
|
fill="currentColor"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|