UNPKG

@patternfly/react-core

Version:

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

18 lines 961 B
/// <reference types="react" /> export interface TextInputGroupProps extends React.HTMLProps<HTMLDivElement> { /** Content rendered inside the text input group */ children?: React.ReactNode; /** Additional classes applied to the text input group container */ className?: string; /** Adds disabled styling and a disabled context value which text input group main hooks into for the input itself */ isDisabled?: boolean; /** Flag to indicate the toggle has no border or background */ isPlain?: boolean; /** Status variant of the text input group. */ validated?: 'success' | 'warning' | 'error'; /** @hide A reference object to attach to the input box */ innerRef?: React.RefObject<any>; } export declare const TextInputGroupContext: import("react").Context<Partial<TextInputGroupProps>>; export declare const TextInputGroup: React.FunctionComponent<TextInputGroupProps>; //# sourceMappingURL=TextInputGroup.d.ts.map