Repository URL to install this package:
|
Version:
0.14.1 ▾
|
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
}