Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / dist / components / molecules / LabelValueSection / LabelValueSection.d.ts
Size: Mime:
import React from 'react';
import { LabelValueSectionProps } from './typings';
import { defaultRenderWrapper, defaultRenderLabelSectionItems } from './renderProps';
declare class LabelValueSection extends React.PureComponent<LabelValueSectionProps> {
    static defaultProps: {
        className: string;
        label: string;
        value: string;
        labelPrefix: string;
        valuePrefix: string;
        renderLabelSectionItems: typeof defaultRenderLabelSectionItems;
        renderWrapper: typeof defaultRenderWrapper;
    };
    render(): React.ReactNode;
}
export { LabelValueSection };
export default LabelValueSection;