import clsx from 'clsx'; import { CProps } from '../props'; interface ValueLabeledProps extends CProps.Styling { id?: string; label: string; text: string | number; title?: string; } function ValueLabeled({ id, label, text, title, className, ...restProps }: ValueLabeledProps) { return (
{label} {text}
); } export default ValueLabeled;