admin/components/icons/CopyIcon.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
1.5 KiB
XML

export default function CopyIcon({ className = 'size-4' }: { className?: string }) {
return (
<svg
className={className}
fill="none"
viewBox="0 0 14 16"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M7.33333 2.66667C7.33333 2.84348 7.40357 3.01305 7.52859 3.13807C7.65362 3.2631 7.82319 3.33333 8 3.33333H10.644C10.5949 2.90045 10.405 2.49569 10.1033 2.18133L8.58067 0.608667C8.24757 0.271032 7.80568 0.0622496 7.33333 0.0193333V2.66667ZM6 2.66667V0H3.33333C2.4496 0.00105857 1.60237 0.352588 0.97748 0.97748C0.352588 1.60237 0.00105857 2.4496 0 3.33333V10C0.00105857 10.8837 0.352588 11.731 0.97748 12.3559C1.60237 12.9807 2.4496 13.3323 3.33333 13.3333H7.33333C8.21706 13.3323 9.06429 12.9807 9.68919 12.3559C10.3141 11.731 10.6656 10.8837 10.6667 10V4.66667H8C7.46957 4.66667 6.96086 4.45595 6.58579 4.08088C6.21071 3.70581 6 3.1971 6 2.66667ZM10 16H4C3.82319 16 3.65362 15.9298 3.5286 15.8047C3.40357 15.6797 3.33333 15.5101 3.33333 15.3333C3.33333 15.1565 3.40357 14.987 3.5286 14.8619C3.65362 14.7369 3.82319 14.6667 4 14.6667H10C10.5304 14.6667 11.0391 14.456 11.4142 14.0809C11.7893 13.7058 12 13.1971 12 12.6667V5.33333C12 5.15652 12.0702 4.98695 12.1953 4.86193C12.3203 4.7369 12.4899 4.66667 12.6667 4.66667C12.8435 4.66667 13.013 4.7369 13.1381 4.86193C13.2631 4.98695 13.3333 5.15652 13.3333 5.33333V12.6667C13.3323 13.5504 12.9807 14.3976 12.3559 15.0225C11.731 15.6474 10.8837 15.9989 10 16Z"
fill="currentColor"
/>
</svg>
)
}