import type { Icon } from '@phosphor-icons/react'; import { cn } from '@/lib/utils'; interface SectionHeaderProps { title: string; icon?: Icon; onIconClick?: () => void; className?: string; } export function SectionHeader({ title, icon: IconComponent, onIconClick, className, }: SectionHeaderProps) { return (