'use client'; import React from 'react'; interface SectionHeaderProps { icon: React.ElementType; title: string; description?: string; action?: React.ReactNode; color?: string; } /** * Section header component with icon, title, optional description and action. * Used at the top of card sections throughout the app. */ export default function SectionHeader({ icon: Icon, title, description, action, color = 'text-primary-blue' }: SectionHeaderProps) { return (

{title}

{description && (

{description}

)}
{action}
); }