diff --git a/components/eventtype/EventTypeDescription.tsx b/components/eventtype/EventTypeDescription.tsx index 86d5b8b5..87069ec4 100644 --- a/components/eventtype/EventTypeDescription.tsx +++ b/components/eventtype/EventTypeDescription.tsx @@ -1,10 +1,4 @@ -import { - ClockIcon, - CreditCardIcon, - InformationCircleIcon, - UserIcon, - UsersIcon, -} from "@heroicons/react/solid"; +import { ClockIcon, CreditCardIcon, UserIcon, UsersIcon } from "@heroicons/react/solid"; import { SchedulingType } from "@prisma/client"; import { Prisma } from "@prisma/client"; import React from "react"; @@ -32,47 +26,45 @@ export type EventTypeDescriptionProps = { export const EventTypeDescription = ({ eventType, className }: EventTypeDescriptionProps) => { return ( - + + )} + + + ); };