import classNames from "classnames"; import { Logo } from "@calcom/ui/components/logo"; import Loader from "@components/Loader"; interface Props { footerText?: React.ReactNode | string; showLogo?: boolean; heading?: string; loading?: boolean; } export default function AuthContainer(props: React.PropsWithChildren) { return (
{props.showLogo && }
{props.heading &&

{props.heading}

}
{props.loading && (
)}
{props.children}
{props.footerText}
); }