/** * Section Header Component * Reusable header for all trip form sections */ import React from "react"; import { LucideIcon } from "lucide-react"; import { __ } from "../../../lib/i18n"; interface SectionHeaderProps { icon: LucideIcon; title: string; description?: string; } export const SectionHeader: React.FC = ({ icon: Icon, title, description, }) => { return (

{__(title, title)}

{description && (

{__(description, description)}

)}
); };