'use client' import { Card, CardContent, CardFooter, CardHeader } from '@/components/ui/card' import { Header } from '@/components/auth/header' import { Social } from '@/components/auth/social' import { BackButton } from '@/components/auth/back-button' type Props = { children: React.ReactNode headerLabel: string headerTitle: string backButtonLabel: string backButtonHref: string showSocial?: boolean continueWithLabel?: string } export const CardWrapper = ({ children, headerLabel, headerTitle, backButtonLabel, backButtonHref, showSocial, continueWithLabel, }: Props) => { return (
{children} {showSocial &&
{continueWithLabel}
} ) }