import { COLORS } from "@/constants"; export const ListSection = ({ title, items, icon: Icon, }: { title: string; items?: string[]; icon?: React.ElementType; }) => { if (!items || items.length === 0) return null; return (

{Icon && ( )} {title}

); };