import type { PropsWithChildren } from "react"; export interface PanelProps extends PropsWithChildren { title?: string; density?: "compact" | "dense"; } export function Panel({ title, density = "dense", children }: PanelProps) { return (
{title ? (

{title}

) : null}
{children}
); }