Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
14 lines
443 B
TypeScript
14 lines
443 B
TypeScript
export default function SendIcon({ className = 'size-6' }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
aria-hidden
|
|
className={className}
|
|
fill="currentColor"
|
|
viewBox="0 0 24 24"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path d="M3.4 20.4l17.45-7.48a1 1 0 000-1.84L3.4 3.6a.993.993 0 00-1.39.91L2 9.12c0 .5.37.93.87.99L17 12 2.87 13.88c-.5.07-.87.5-.87 1l.01 4.61a.993.993 0 001.39.91z" />
|
|
</svg>
|
|
)
|
|
}
|