"use client" import { BookingWidgetFormSkeleton } from "./BookingWidgetForm" import { MobileToggleButtonSkeleton } from "./MobileToggleButton" import { bookingWidgetContainerVariants } from "./variant" import styles from "./bookingWidget.module.css" import type { BookingWidgetClientProps } from "./Client" export function BookingWidgetSkeleton({ type = "full", }: { type?: BookingWidgetClientProps["type"] }) { const classNames = bookingWidgetContainerVariants({ type, }) return ( <>
) }