admin/components/icons/PaymentCardIcon.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

20 lines
1.6 KiB
XML

export default function PaymentCardIcon({ className = 'size-4' }: { className?: string }) {
return (
<svg
className={className}
fill="none"
viewBox="0 0 13 12"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M7.167 8.667a.5.5 0 0 0 0 1h2.666a.5.5 0 0 0 0-1H7.167Z"
fill="currentColor"
/>
<path
d="M3.603.047C4.18 0 4.896 0 5.81 0h1.38c.914 0 1.63 0 2.207.047.586.048 1.071.147 1.51.37.721.368 1.307.954 1.675 1.676.322.632.39 1.373.41 2.397.008.39.008.834.008 1.34v.026c0 .914 0 1.631-.047 2.207-.048.587-.147 1.072-.37 1.51a3.833 3.833 0 0 1-1.676 1.676c-.439.223-.924.323-1.51.37-.577.048-1.294.048-2.208.048H5.811c-.915 0-1.632 0-2.208-.048-.587-.047-1.071-.147-1.51-.37A3.833 3.833 0 0 1 .418 9.574c-.224-.439-.323-.924-.37-1.51C0 7.487 0 6.77 0 5.856V5.83c0-.506 0-.95.007-1.34.02-1.024.089-1.765.41-2.397A3.833 3.833 0 0 1 2.094.418c.439-.224.923-.323 1.51-.37Zm.082.997c-.525.043-.864.125-1.138.265a2.833 2.833 0 0 0-1.238 1.238c-.17.332-.25.747-.285 1.453h10.952c-.035-.706-.116-1.12-.285-1.453a2.833 2.833 0 0 0-1.238-1.238c-.274-.14-.613-.222-1.138-.265C8.785 1 8.108 1 7.167 1H5.833c-.941 0-1.618 0-2.148.044ZM1.002 5C1 5.254 1 5.53 1 5.833c0 .942 0 1.618.044 2.149.043.525.125.863.265 1.138.271.533.705.966 1.238 1.238.274.14.613.222 1.138.265.53.043 1.207.044 2.148.044h1.334c.941 0 1.618 0 2.148-.044.525-.043.864-.125 1.138-.265a2.833 2.833 0 0 0 1.238-1.238c.14-.275.222-.613.265-1.138.043-.53.044-1.207.044-2.149 0-.303 0-.58-.002-.833H1.002Z"
fill="currentColor"
/>
</svg>
)
}