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

26 lines
1.8 KiB
XML

export default function DollarIcon({ className = 'size-6', color = '' }) {
return (
<svg
className={className}
fill="none"
height="16"
viewBox="0 0 16 16"
width="16"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M8.93344 11.6134H7.2601C6.16677 11.6134 5.2801 10.6934 5.2801 9.56005C5.2801 9.28672 5.50677 9.06005 5.7801 9.06005C6.05344 9.06005 6.2801 9.28672 6.2801 9.56005C6.2801 10.1401 6.7201 10.6134 7.2601 10.6134H8.93344C9.36677 10.6134 9.72677 10.2267 9.72677 9.76005C9.72677 9.18005 9.5201 9.06672 9.1801 8.94672L6.49344 8.00005C5.97344 7.82005 5.27344 7.43339 5.27344 6.24005C5.27344 5.21339 6.0801 4.38672 7.06677 4.38672H8.7401C9.83344 4.38672 10.7201 5.30672 10.7201 6.44005C10.7201 6.71339 10.4934 6.94005 10.2201 6.94005C9.94677 6.94005 9.7201 6.71339 9.7201 6.44005C9.7201 5.86005 9.2801 5.38672 8.7401 5.38672H7.06677C6.63344 5.38672 6.27344 5.77339 6.27344 6.24005C6.27344 6.82005 6.4801 6.93339 6.8201 7.05339L9.50677 8.00005C10.0268 8.18005 10.7268 8.56672 10.7268 9.76005C10.7201 10.7801 9.9201 11.6134 8.93344 11.6134Z"
fill={color.length ? color : 'currentColor'}
/>
<path
d="M8 12.5C7.72667 12.5 7.5 12.2733 7.5 12V4C7.5 3.72667 7.72667 3.5 8 3.5C8.27333 3.5 8.5 3.72667 8.5 4V12C8.5 12.2733 8.27333 12.5 8 12.5Z"
fill={color.length ? color : 'currentColor'}
/>
<path
d="M7.99992 15.1668C4.04659 15.1668 0.833252 11.9535 0.833252 8.00016C0.833252 4.04683 4.04659 0.833496 7.99992 0.833496C11.9533 0.833496 15.1666 4.04683 15.1666 8.00016C15.1666 11.9535 11.9533 15.1668 7.99992 15.1668ZM7.99992 1.8335C4.59992 1.8335 1.83325 4.60016 1.83325 8.00016C1.83325 11.4002 4.59992 14.1668 7.99992 14.1668C11.3999 14.1668 14.1666 11.4002 14.1666 8.00016C14.1666 4.60016 11.3999 1.8335 7.99992 1.8335Z"
fill="currentColor"
/>
</svg>
)
}