diff --git a/pages/bookings/index.tsx b/pages/bookings/index.tsx
index ca5b2e95..d9dcdade 100644
--- a/pages/bookings/index.tsx
+++ b/pages/bookings/index.tsx
@@ -8,7 +8,7 @@ import { Fragment } from "react";
import { Menu, Transition } from "@headlessui/react";
import { DotsHorizontalIcon } from "@heroicons/react/solid";
import classNames from "@lib/classNames";
-import { ClockIcon, XIcon } from "@heroicons/react/outline";
+import { ClockIcon, XIcon, CheckIcon, BanIcon } from "@heroicons/react/outline";
import Loader from "@components/Loader";
import { Button } from "@components/ui/Button";
import { getSession } from "@lib/auth";
@@ -89,33 +89,103 @@ export default function Bookings({ bookings }) {
{!booking.confirmed && !booking.rejected && (
<>
-
-
+
+
+
+
+
>
)}
{booking.confirmed && !booking.rejected && (
-
-
-
+ <>
+
+
+
+
-
+ >
)}
{!booking.confirmed && booking.rejected && (
Rejected
|