'use client'; import React from 'react'; import { Box } from './Box'; import { Stack } from './Stack'; import { Text } from './Text'; import { Heading } from './Heading'; import { Surface } from './Surface'; import { Icon } from './Icon'; import { LucideIcon } from 'lucide-react'; interface SectionHeaderProps { icon: LucideIcon; title: string; description?: string; action?: React.ReactNode; color?: string; } export function SectionHeader({ icon, title, description, action, color = '#3b82f6' }: SectionHeaderProps) { return ( {title} {description && ( {description} )} {action && {action}} ); }