import { useLocale } from "@calcom/lib/hooks/useLocale"; import { Badge } from "@calcom/ui/components/badge"; import { CheckIcon } from "@coss/ui/icons"; export interface BookingSuccessCardProps { title: string; formattedDate: string; formattedTime: string; endTime: string; formattedTimeZone: string; hostName: string | null; hostEmail: string | null; attendeeName: string | null; attendeeEmail: string | null; location: string | null; } export function BookingSuccessCard({ title, formattedDate, formattedTime, endTime, formattedTimeZone, hostName, hostEmail, attendeeName, attendeeEmail, location, }: BookingSuccessCardProps) { const { t } = useLocale(); return (
); }