Repository URL to install this package:
|
Version:
0.9.5 ▾
|
ui-component-library
/
dist
/
typings
/
src
/
components
/
molecules
/
LabelValueSection
/
typings.d.ts
|
|---|
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;
}