A reusable layout component that renders a labeled section within a ticket detail view, pairing an uppercase secondary-text heading with arbitrary child content. ## Key Components ### `TicketDetailSection` A simple presentational component that wraps a section label and its associated content in a flex column layout. **Props (`TicketDetailSectionProps`):** | Prop | Type | Description | |------|------|-------------| | `label` | `string` | Section heading displayed in secondary text style | | `children` | `React.ReactNode` | Content rendered below the label | | `className` | `string?` | Optional additional CSS classes | ## Usage Example ```typescript import { TicketDetailSection } from "./ticket-detail-section" export function TicketDetails() { return ( John Doe ) } ```