Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
31 lines
2.7 KiB
XML
31 lines
2.7 KiB
XML
export default function LogoutIcon({ className = 'size-6' }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<g clipPath="url(#clip0_410_2533)">
|
|
<path
|
|
d="M11.476 15C11.2108 15 10.9564 15.1054 10.7689 15.2929C10.5814 15.4804 10.476 15.7348 10.476 16V19C10.476 19.7956 10.1599 20.5587 9.59732 21.1213C9.03471 21.6839 8.27165 22 7.476 22H5C4.20435 22 3.44129 21.6839 2.87868 21.1213C2.31607 20.5587 2 19.7956 2 19V5C2 4.20435 2.31607 3.44129 2.87868 2.87868C3.44129 2.31607 4.20435 2 5 2H7.476C8.27165 2 9.03471 2.31607 9.59732 2.87868C10.1599 3.44129 10.476 4.20435 10.476 5V8C10.476 8.26522 10.5814 8.51957 10.7689 8.70711C10.9564 8.89464 11.2108 9 11.476 9C11.7412 9 11.9956 8.89464 12.1831 8.70711C12.3706 8.51957 12.476 8.26522 12.476 8V5C12.4744 3.67441 11.9471 2.40356 11.0098 1.46622C10.0724 0.528882 8.80159 0.00158786 7.476 0H5C3.67441 0.00158786 2.40356 0.528882 1.46622 1.46622C0.528882 2.40356 0.00158786 3.67441 0 5L0 19C0.00158786 20.3256 0.528882 21.5964 1.46622 22.5338C2.40356 23.4711 3.67441 23.9984 5 24H7.476C8.80159 23.9984 10.0724 23.4711 11.0098 22.5338C11.9471 21.5964 12.4744 20.3256 12.476 19V16C12.476 15.7348 12.3706 15.4804 12.1831 15.2929C11.9956 15.1054 11.7412 15 11.476 15Z"
|
|
fill="currentColor"
|
|
/>
|
|
<path
|
|
d="M22.867 9.87908L18.281 5.29308C18.1888 5.19757 18.0784 5.12139 17.9564 5.06898C17.8344 5.01657 17.7032 4.98898 17.5704 4.98783C17.4376 4.98668 17.3059 5.01198 17.183 5.06226C17.0602 5.11254 16.9485 5.18679 16.8546 5.28069C16.7607 5.37458 16.6865 5.48623 16.6362 5.60913C16.5859 5.73202 16.5606 5.8637 16.5618 5.99648C16.5629 6.12926 16.5905 6.26048 16.6429 6.38249C16.6953 6.50449 16.7715 6.61483 16.867 6.70708L21.129 10.9701L6 11.0001C5.73478 11.0001 5.48043 11.1054 5.29289 11.293C5.10536 11.4805 5 11.7349 5 12.0001C5 12.2653 5.10536 12.5197 5.29289 12.7072C5.48043 12.8947 5.73478 13.0001 6 13.0001L21.188 12.9691L16.865 17.2931C16.7695 17.3853 16.6933 17.4957 16.6409 17.6177C16.5885 17.7397 16.5609 17.8709 16.5598 18.0037C16.5586 18.1365 16.5839 18.2681 16.6342 18.391C16.6845 18.5139 16.7587 18.6256 16.8526 18.7195C16.9465 18.8134 17.0582 18.8876 17.181 18.9379C17.3039 18.9882 17.4356 19.0135 17.5684 19.0123C17.7012 19.0112 17.8324 18.9836 17.9544 18.9312C18.0764 18.8788 18.1868 18.8026 18.279 18.7071L22.865 14.1211C23.4277 13.5588 23.744 12.796 23.7444 12.0005C23.7447 11.205 23.4292 10.4419 22.867 9.87908Z"
|
|
fill="currentColor"
|
|
/>
|
|
</g>
|
|
<defs>
|
|
<clipPath id="clip0_410_2533">
|
|
<rect
|
|
fill="white"
|
|
height="24"
|
|
width="24"
|
|
/>
|
|
</clipPath>
|
|
</defs>
|
|
</svg>
|
|
)
|
|
}
|