import { EventType, SchedulingType } from "@prisma/client"; import { ClockIcon, InformationCircleIcon, UserIcon, UsersIcon } from "@heroicons/react/solid"; import React from "react"; import classNames from "@lib/classNames"; export type EventTypeDescriptionProps = { eventType: EventType; className?: string; }; export const EventTypeDescription = ({ eventType, className }: EventTypeDescriptionProps) => { return (