ConceptPortal-public/rsconcept/frontend/src/components/ui/LabeledValue.tsx
IRBorisov 56cb7236ca Refactoring: improve id's and labels
Do not use html labels without inputs
2024-03-18 16:21:39 +03:00

18 lines
362 B
TypeScript

interface LabeledValueProps {
id?: string;
label: string;
text: string | number;
title?: string;
}
function LabeledValue({ id, label, text, title }: LabeledValueProps) {
return (
<div className='flex justify-between gap-3'>
<span title={title}>{label}</span>
<span id={id}>{text}</span>
</div>
);
}
export default LabeledValue;