diff --git a/apps/web/components/AddToHomescreen.tsx b/apps/web/components/AddToHomescreen.tsx index 330863ff17..6f16221b28 100644 --- a/apps/web/components/AddToHomescreen.tsx +++ b/apps/web/components/AddToHomescreen.tsx @@ -1,7 +1,7 @@ -import { XIcon } from "@heroicons/react/outline"; import { useState } from "react"; -import { useLocale } from "@lib/hooks/useLocale"; +import { useLocale } from "@calcom/lib/hooks/useLocale"; +import { Icon } from "@calcom/ui/Icon"; export default function AddToHomescreen() { const { t } = useLocale(); @@ -40,7 +40,7 @@ export default function AddToHomescreen() { type="button" className="-mr-1 flex rounded-md p-2 hover:bg-gray-800 focus:outline-none focus:ring-2 focus:ring-white"> {t("dismiss")} - + diff --git a/apps/web/components/AdditionalCalendarSelector.tsx b/apps/web/components/AdditionalCalendarSelector.tsx index dbeab7cb8e..43d2fe338c 100644 --- a/apps/web/components/AdditionalCalendarSelector.tsx +++ b/apps/web/components/AdditionalCalendarSelector.tsx @@ -73,7 +73,7 @@ const AdditionalCalendarSelector = ({ isLoading }: AdditionalCalendarSelectorPro }, }} isSearchable={false} - className="mt-1 mb-2 block w-full min-w-0 flex-1 rounded-none rounded-r-sm border-gray-300 font-medium text-gray-700 sm:text-sm" + className="mt-1 mb-2 block w-full min-w-0 flex-1 rounded-none rounded-r-sm border-gray-300 text-sm font-medium text-gray-700" isLoading={isLoading} components={{ Option: ImageOption }} /> diff --git a/apps/web/components/App.tsx b/apps/web/components/App.tsx index 7b7c7ce987..3908a0efc4 100644 --- a/apps/web/components/App.tsx +++ b/apps/web/components/App.tsx @@ -1,14 +1,3 @@ -import { - BookOpenIcon, - CheckIcon, - DocumentTextIcon, - ExternalLinkIcon, - FlagIcon, - MailIcon, - PlusIcon, - ShieldCheckIcon, -} from "@heroicons/react/outline"; -import { ChevronLeftIcon } from "@heroicons/react/solid"; import Link from "next/link"; import React, { useEffect, useState } from "react"; @@ -19,6 +8,7 @@ import showToast from "@calcom/lib/notification"; import { trpc } from "@calcom/trpc/react"; import { App as AppType } from "@calcom/types/App"; import { Button, SkeletonButton } from "@calcom/ui"; +import { Icon } from "@calcom/ui/Icon"; import LicenseRequired from "@ee/components/LicenseRequired"; import Shell from "@components/Shell"; @@ -94,7 +84,7 @@ const Component = ({
{t("choose_ways_put_cal_site")}
-