import type { ReactNode } from "react"; import { Separator } from "@/components/ds/ui/separator"; import { cn } from "@/lib/utils"; export type AsideSectionProps = { title: string; children?: ReactNode; noGap?: boolean; }; export function AsideSection({ title, children, noGap }: AsideSectionProps) { return (

{title}

{children}
); }