import type { ReactNode } from 'react' type Props = { title: string tagline?: string children: ReactNode } export function LoginCard({ title, tagline, children }: Props) { return (

{title}

{tagline &&

{tagline}

}
{children}
) }