import type { ReactNode } from 'react' /** Compact labeled tile — same idiom as `AdminUserContactInfo`. */ export const DetailItem = ({ label, children }: { label: string; children: ReactNode }) => (
{label} {children}
) export const InsightStat = ({ label, value, hint }: { label: string; value: string; hint?: string }) => (
{label} {value} {hint ? {hint} : null}
)