UNPKG

@patternfly/react-core

Version:

This library provides a set of common React components for use with the PatternFly reference implementation.

19 lines 774 B
/// <reference types="react" /> export interface FormFieldGroupHeaderTitleTextObject { /** Title text. */ text: React.ReactNode; /** The id applied to the title div for accessibility */ id: string; } export interface FormFieldGroupHeaderProps extends React.HTMLProps<HTMLDivElement> { /** Additional classes added to the section */ className?: string; /** Field group header title text */ titleText?: FormFieldGroupHeaderTitleTextObject; /** Field group header title description */ titleDescription?: React.ReactNode; /** Field group header actions */ actions?: React.ReactNode; } export declare const FormFieldGroupHeader: React.FunctionComponent<FormFieldGroupHeaderProps>; //# sourceMappingURL=FormFieldGroupHeader.d.ts.map