events page, manage events page, create events page

This commit is contained in:
Harini312821
2024-07-19 10:53:31 +08:00
parent e6d913aa10
commit 65b0f59a3d
7 changed files with 358 additions and 95 deletions

View File

@@ -425,3 +425,22 @@ export const BarsThreeIcon = () => {
</svg>
);
};
export const TrashIcon = () => {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
strokeWidth={1.5}
stroke="currentColor"
className="size-6"
>
<path
strokeLinecap="round"
strokeLinejoin="round"
d="M6 18L18 6M6 6l12 12"
/>
</svg>
);
};