import { cn } from "@/shared/utils/ui"; interface AuthHeaderProps { title: string; description?: string; } export function AuthHeader({ title, description }: AuthHeaderProps) { return (

{title}

{description ? (

{description}

) : null}
); }