admin/components/icons/LinkIcon.tsx
alisaza e1eaf5eff5 feat: initial ghabilee-admin backoffice app
Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js
app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
2026-09-05 13:12:59 +03:30

16 lines
556 B
TypeScript

export default function LinkIcon({ className = 'size-5' }: { className?: string }) {
return (
<svg
className={className}
fill="none"
viewBox="0 0 20 12"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M5.75 0C2.574 0 0 2.574 0 5.75s2.574 5.75 5.75 5.75a.75.75 0 0 0 0-1.5 4.25 4.25 0 0 1 0-8.5.75.75 0 0 0 0-1.5ZM13.75 0a.75.75 0 0 0 0 1.5 4.25 4.25 0 0 1 0 8.5.75.75 0 0 0 0 1.5 5.75 5.75 0 0 0 0-11.5ZM5.75 5a.75.75 0 0 0 0 1.5h8a.75.75 0 0 0 0-1.5h-8Z"
fill="currentColor"
/>
</svg>
)
}