import { type ComponentPropsWithoutRef, type ReactNode } from 'react'; /** * Props for the Panel component */ export type PanelProps = { /** * The content to display inside the panel */ children: ReactNode; } & ComponentPropsWithoutRef<'div'>;