UNPKG

@patternfly/react-core

Version:

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

15 lines 704 B
/// <reference types="react" /> import { ButtonProps } from '../Button'; /** A help button to be passed to the FormGroup's labelHelp property. This should be wrapped or linked * to our Popover component. */ export interface FormGroupLabelHelpProps extends ButtonProps { /** Adds an accessible name for the help button. */ 'aria-label': string; /** Additional classes added to the help button. */ className?: string; /** @hide Forwarded ref */ innerRef?: React.Ref<HTMLSpanElement>; } export declare const FormGroupLabelHelp: import("react").ForwardRefExoticComponent<FormGroupLabelHelpProps & import("react").RefAttributes<any>>; //# sourceMappingURL=FormGroupLabelHelp.d.ts.map