diff --git a/apps/web/components/booking/BookingListItem.tsx b/apps/web/components/booking/BookingListItem.tsx index 7af2db8944..3dc01a2dcb 100644 --- a/apps/web/components/booking/BookingListItem.tsx +++ b/apps/web/components/booking/BookingListItem.tsx @@ -29,7 +29,7 @@ import { TableActions, TextAreaField, } from "@calcom/ui"; -import { Check, Clock, MapPin, RefreshCcw, Send, Slash, X, CreditCard } from "@calcom/ui/components/icon"; +import { Check, Clock, MapPin, RefreshCcw, Send, Ban, X, CreditCard } from "@calcom/ui/components/icon"; import useMeQuery from "@lib/hooks/useMeQuery"; @@ -119,7 +119,7 @@ function BookingListItem(booking: BookingItemProps) { onClick: () => { setRejectionDialogIsOpen(true); }, - icon: Slash, + icon: Ban, disabled: mutation.isLoading, }, // For bookings with payment, only confirm if the booking is paid for diff --git a/apps/web/components/getting-started/steps-views/ConnectCalendars.tsx b/apps/web/components/getting-started/steps-views/ConnectCalendars.tsx index d2e91f7c09..2109f01a4c 100644 --- a/apps/web/components/getting-started/steps-views/ConnectCalendars.tsx +++ b/apps/web/components/getting-started/steps-views/ConnectCalendars.tsx @@ -1,9 +1,8 @@ -import { ArrowRightIcon } from "@heroicons/react/solid"; - import classNames from "@calcom/lib/classNames"; import { useLocale } from "@calcom/lib/hooks/useLocale"; import { trpc } from "@calcom/trpc/react"; import { List } from "@calcom/ui"; +import { ArrowRight } from "@calcom/ui/components/icon"; import { AppConnectionItem } from "../components/AppConnectionItem"; import { ConnectedCalendarItem } from "../components/ConnectedCalendarItem"; @@ -85,7 +84,7 @@ const ConnectedCalendars = (props: IConnectCalendarsProps) => { onClick={() => nextStep()} disabled={disabledNextButton}> {firstCalendar ? `${t("continue")}` : `${t("next_step_text")}`} -