Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
26 lines
1.2 KiB
XML
26 lines
1.2 KiB
XML
export default function InfoIcon({ className = 'size-[15px]' }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
fill="none"
|
|
viewBox="0 0 15 15"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M7.83333 9.83333C7.83333 10.2015 7.53486 10.5 7.16667 10.5C6.79848 10.5 6.5 10.2015 6.5 9.83333C6.5 9.46514 6.79848 9.16667 7.16667 9.16667C7.53486 9.16667 7.83333 9.46514 7.83333 9.83333Z"
|
|
fill="currentColor"
|
|
/>
|
|
<path
|
|
d="M7.66667 3.83333C7.66667 3.55719 7.44281 3.33333 7.16667 3.33333C6.89052 3.33333 6.66667 3.55719 6.66667 3.83333V7.83333C6.66667 8.10948 6.89052 8.33333 7.16667 8.33333C7.44281 8.33333 7.66667 8.10948 7.66667 7.83333V3.83333Z"
|
|
fill="currentColor"
|
|
/>
|
|
<path
|
|
clipRule="evenodd"
|
|
d="M7.16667 0C3.20863 0 0 3.20863 0 7.16667C0 11.1247 3.20863 14.3333 7.16667 14.3333C11.1247 14.3333 14.3333 11.1247 14.3333 7.16667C14.3333 3.20863 11.1247 0 7.16667 0ZM1 7.16667C1 3.76091 3.76091 1 7.16667 1C10.5724 1 13.3333 3.76091 13.3333 7.16667C13.3333 10.5724 10.5724 13.3333 7.16667 13.3333C3.76091 13.3333 1 10.5724 1 7.16667Z"
|
|
fill="currentColor"
|
|
fillRule="evenodd"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|