import React from 'react' interface ISidebarSectionProps { title: string children: React.ReactNode icon?: React.ReactNode } export function SidebarSection({ title, children, icon }: ISidebarSectionProps) { return (