import type { LucideIcon } from 'lucide-react'; import { cn } from '@/lib/utils'; type SectionHeaderProps = { eyebrow?: string; title: string; description?: string; icon?: LucideIcon; align?: 'left' | 'center'; className?: string; }; export function SectionHeader({ eyebrow, title, description, icon: Icon, align = 'left', className, }: SectionHeaderProps) { const centered = align === 'center'; return (
{eyebrow && (

{eyebrow}

)}
{Icon && (
)}

{title}

{description && (

{description}

)}
); }