Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
35 lines
2.0 KiB
XML
35 lines
2.0 KiB
XML
export default function TrashIcon({ className = 'size-6' }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
fill="none"
|
|
height="16"
|
|
viewBox="0 0 16 16"
|
|
width="16"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M14.0466 3.48659C12.9733 3.37992 11.8999 3.29992 10.8199 3.23992V3.23325L10.6733 2.36659C10.5733 1.75325 10.4266 0.833252 8.86661 0.833252H7.11994C5.56661 0.833252 5.41994 1.71325 5.31328 2.35992L5.17328 3.21325C4.55328 3.25325 3.93328 3.29325 3.31328 3.35325L1.95328 3.48659C1.67328 3.51325 1.47328 3.75992 1.49994 4.03325C1.52661 4.30659 1.76661 4.50659 2.04661 4.47992L3.40661 4.34659C6.89994 3.99992 10.4199 4.13325 13.9533 4.48659C13.9733 4.48659 13.9866 4.48659 14.0066 4.48659C14.2599 4.48659 14.4799 4.29325 14.5066 4.03325C14.5266 3.75992 14.3266 3.51325 14.0466 3.48659Z"
|
|
fill="currentColor"
|
|
/>
|
|
<path
|
|
d="M12.8199 5.42675C12.6599 5.26008 12.4399 5.16675 12.2132 5.16675H3.78658C3.55991 5.16675 3.33325 5.26008 3.17991 5.42675C3.02658 5.59341 2.93991 5.82008 2.95325 6.05341L3.36658 12.8934C3.43991 13.9067 3.53325 15.1734 5.85991 15.1734H10.1399C12.4666 15.1734 12.5599 13.9134 12.6332 12.8934L13.0466 6.06008C13.0599 5.82008 12.9732 5.59341 12.8199 5.42675Z"
|
|
fill="currentColor"
|
|
opacity="0.3991"
|
|
/>
|
|
<path
|
|
clipRule="evenodd"
|
|
d="M6.38672 11.3333C6.38672 11.0571 6.61058 10.8333 6.88672 10.8333H9.10672C9.38286 10.8333 9.60672 11.0571 9.60672 11.3333C9.60672 11.6094 9.38286 11.8333 9.10672 11.8333H6.88672C6.61058 11.8333 6.38672 11.6094 6.38672 11.3333Z"
|
|
fill="currentColor"
|
|
fillRule="evenodd"
|
|
/>
|
|
<path
|
|
clipRule="evenodd"
|
|
d="M5.83325 8.66675C5.83325 8.39061 6.05711 8.16675 6.33325 8.16675H9.66659C9.94273 8.16675 10.1666 8.39061 10.1666 8.66675C10.1666 8.94289 9.94273 9.16675 9.66659 9.16675H6.33325C6.05711 9.16675 5.83325 8.94289 5.83325 8.66675Z"
|
|
fill="currentColor"
|
|
fillRule="evenodd"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|