import React from 'react' import type { LucideIcon } from 'lucide-react' interface SectionProps { title: string icon: LucideIcon children: React.ReactNode } export default function Section({ title, icon: Icon, children }: SectionProps): React.ReactElement { return (

{title}

{children}
) }