import type { ReactNode } from "react"; import { cn } from "@/lib/ui/variants"; interface SectionHeaderProps { title: string; description?: ReactNode; action?: ReactNode; className?: string; } export function SectionHeader({ title, description, action, className, }: SectionHeaderProps) { return (

{title}

{description ? (

{description}

) : null}
{action ?
{action}
: null}
); }