"use client"; import { type ReactNode } from "react"; import { type LucideIcon } from "lucide-react"; interface SpaceSectionHeaderProps { icon: LucideIcon; title: string; description: string; action?: ReactNode; meta?: ReactNode; } export default function SpaceSectionHeader({ icon: Icon, title, description, action, meta, }: SpaceSectionHeaderProps) { return (

{title}

{meta}

{description}

{action && (
{action}
)}
); }