import clsx from "clsx"; export interface SectionLabelProps { /** mono index, e.g. "02" */ index: string; title: string; /** optional mono hint rendered after the title */ hint?: string; className?: string; } /** Compact numbered section header for model-detail sections. */ export default function SectionLabel({ index, title, hint, className, }: SectionLabelProps) { return (
{index}

{title}

{hint && {hint}}
); }