UNPKG

@patternfly/react-core

Version:

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

12 lines 639 B
/// <reference types="react" /> export interface InputGroupProps extends React.HTMLProps<HTMLDivElement> { /** Additional classes added to the input group. */ className?: string; /** Content rendered inside the input group. */ children: React.ReactNode; /** @hide A reference object to attach to the input box */ innerRef?: React.Ref<any>; } export declare const InputGroupBase: React.FunctionComponent<InputGroupProps>; export declare const InputGroup: import("react").ForwardRefExoticComponent<Omit<InputGroupProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>; //# sourceMappingURL=InputGroup.d.ts.map