digitinary-ui
Version:
Digitinary UI Library
12 lines (11 loc) • 340 B
TypeScript
import React from 'react';
import './style.scss';
type SimpleLabelValueProps = {
label?: string | JSX.Element;
value?: string | number | JSX.Element | JSX.Element[];
color?: string;
className?: string;
dataId?: string;
};
declare const SimpleLabelValue: React.FC<SimpleLabelValueProps>;
export default SimpleLabelValue;