import clsx from 'clsx'; import { CProps } from '../props'; interface ValueLabeledProps extends CProps.Styling { /** Id of the component. */ id?: string; /** Label to display. */ label: string; /** Value to display. */ text: string | number; /** Tooltip for the component. */ title?: string; } /** * Displays a labeled value. */ function ValueLabeled({ id, label, text, title, className, ...restProps }: ValueLabeledProps) { return (