Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
17 lines
681 B
XML
17 lines
681 B
XML
export default function SettingsIcon({ className = 'size-5' }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
aria-hidden
|
|
className={className}
|
|
fill="none"
|
|
viewBox="0 0 20 20"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M8.2 1.8h3.6l.3 1.6c.4.1.8.3 1.1.5l1.5-.7 1.8 1.8-.7 1.5c.2.3.4.7.5 1.1l1.6.3v3.6l-1.6.3c-.1.4-.3.8-.5 1.1l.7 1.5-1.8 1.8-1.5-.7c-.3.2-.7.4-1.1.5l-.3 1.6H8.2l-.3-1.6a5 5 0 0 1-1.1-.5l-1.5.7-1.8-1.8.7-1.5a5 5 0 0 1-.5-1.1L2.1 10.8V7.2l1.6-.3c.1-.4.3-.8.5-1.1l-.7-1.5L5.3 2.5l1.5.7c.3-.2.7-.4 1.1-.5l.3-1.6ZM10 7.2A2.8 2.8 0 1 0 10 12.8 2.8 2.8 0 0 0 10 7.2Z"
|
|
fill="currentColor"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|