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