Repository URL to install this package:
|
Version:
2.7.11 ▾
|
import { ReactNode } from 'react';
export interface LabelValueSectionRenderProps {
(props: LabelValueSectionProps): ReactNode;
}
export interface LabelValueSectionProps {
className?: string;
children?: ReactNode;
label?: string;
value?: string | number;
labelPrefix?: string;
valuePrefix?: string;
renderLabelSectionItems?: LabelValueSectionRenderProps;
renderWrapper?: LabelValueSectionRenderProps;
}