import type { ReactNode } from "react"; import { SkeletonText } from "@calcom/ui/components/skeleton"; type OnboardingCardProps = { title: string; subtitle: string; children: ReactNode; footer: ReactNode; isLoading?: boolean; }; export const OnboardingCard = ({ title, subtitle, children, footer, isLoading }: OnboardingCardProps) => { return (
{/* Card Header */}

{title}

{subtitle}

{/* Content */}
{isLoading ? (
) : ( children )}
{/* Footer */}
{footer}
); };