import { H4 } from "@components/UI/Typography/H4.js"; export interface SidebarSectionProps { label: string; subheader?: string; children: React.ReactNode; } export const SidebarSection = ({ label: title, children, }: SidebarSectionProps): JSX.Element => (