import type { ReactNode } from 'react' type Props = { label: string hint?: string right?: ReactNode children: ReactNode className?: string } /** Instrument panel chrome: hairline frame, corner ticks, eyebrow label. */ export function Panel({ label, hint, right, children, className = '' }: Props) { return (

{label}

{hint &&

{hint}

}
{right}
{children}
) }