Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
19 lines
1.8 KiB
XML
19 lines
1.8 KiB
XML
export default function ArrowSwapIcon({ className = 'size-6' }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M8.2815 1.51387C8.42659 1.49538 8.57341 1.49538 8.7185 1.51387C8.94958 1.54332 9.2076 1.654 9.60929 1.97659C10.0228 2.30869 10.5109 2.7995 11.22 3.51499L12.9673 5.27796C13.2589 5.57216 13.7338 5.57427 14.028 5.28269C14.3222 4.99111 14.3243 4.51624 14.0327 4.22204L12.2539 2.4273C11.584 1.75133 11.0364 1.19886 10.5485 0.807056C10.0412 0.399628 9.52628 0.104695 8.90816 0.025909C8.63714 -0.00863635 8.36286 -0.00863629 8.09184 0.025909C7.47372 0.104695 6.95878 0.399628 6.45146 0.807057C5.96358 1.19886 5.41604 1.75134 4.74609 2.42732L2.96731 4.22204C2.67573 4.51624 2.67784 4.99111 2.97204 5.28269C3.26624 5.57427 3.74111 5.57216 4.03269 5.27796L5.78 3.51499C6.48914 2.7995 6.97718 2.30869 7.39071 1.97659C7.7924 1.654 8.05042 1.54332 8.2815 1.51387Z"
|
|
fill="currentColor"
|
|
/>
|
|
<path
|
|
d="M14.0327 12.778C14.3243 12.4838 14.3222 12.0089 14.028 11.7173C13.7338 11.4257 13.2589 11.4278 12.9673 11.722L11.22 13.485C10.5109 14.2005 10.0228 14.6913 9.6093 15.0234C9.2076 15.346 8.94958 15.4567 8.7185 15.4861C8.57341 15.5046 8.42659 15.5046 8.2815 15.4861C8.05042 15.4567 7.7924 15.346 7.39071 15.0234C6.97718 14.6913 6.48914 14.2005 5.78 13.485L4.03269 11.722C3.74111 11.4278 3.26624 11.4257 2.97204 11.7173C2.67784 12.0089 2.67573 12.4838 2.96731 12.778L4.74609 14.5727C5.41604 15.2487 5.96359 15.8011 6.45146 16.1929C6.95879 16.6004 7.47373 16.8953 8.09184 16.9741C8.36287 17.0086 8.63714 17.0086 8.90816 16.9741C9.52628 16.8953 10.0412 16.6004 10.5485 16.1929C11.0364 15.8011 11.584 15.2487 12.2539 14.5727L14.0327 12.778Z"
|
|
fill="currentColor"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|