Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
22 lines
1.4 KiB
XML
22 lines
1.4 KiB
XML
export default function EyeIcon({ className = 'size-6' }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
fill="none"
|
|
viewBox="0 0 18 18"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M7.31372 9C7.31372 8.06802 8.06924 7.3125 9.00122 7.3125C9.9332 7.3125 10.6887 8.06802 10.6887 9C10.6887 9.93198 9.9332 10.6875 9.00122 10.6875C8.06924 10.6875 7.31372 9.93198 7.31372 9Z"
|
|
fill="currentColor"
|
|
/>
|
|
<path
|
|
clipRule="evenodd"
|
|
d="M4.76502 4.19679C5.94366 3.23174 7.39551 2.4375 9.00122 2.4375C10.6069 2.4375 12.0588 3.23174 13.2374 4.19679C14.4225 5.1671 15.3915 6.35899 16.0427 7.26601L16.0964 7.3407C16.4884 7.88538 16.811 8.33374 16.811 9C16.811 9.66626 16.4884 10.1146 16.0964 10.6593L16.0427 10.734C15.3915 11.641 14.4225 12.8329 13.2374 13.8032C12.0588 14.7683 10.6069 15.5625 9.00122 15.5625C7.39551 15.5625 5.94366 14.7683 4.76502 13.8032C3.57995 12.8329 2.61094 11.641 1.95978 10.734L1.90608 10.6593C1.51408 10.1146 1.19141 9.66626 1.19141 9C1.19141 8.33374 1.51408 7.88538 1.90608 7.34069L1.95978 7.26601C2.61093 6.35899 3.57995 5.1671 4.76502 4.19679ZM9.00122 6.1875C7.44792 6.1875 6.18872 7.4467 6.18872 9C6.18872 10.5533 7.44792 11.8125 9.00122 11.8125C10.5545 11.8125 11.8137 10.5533 11.8137 9C11.8137 7.4467 10.5545 6.1875 9.00122 6.1875Z"
|
|
fill="currentColor"
|
|
fillRule="evenodd"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|