UNPKG

661 BTypeScriptView Raw
1import * as React from 'react';
2export interface TextInputGroupProps extends React.HTMLProps<HTMLDivElement> {
3 /** Content rendered inside the text input group */
4 children?: React.ReactNode;
5 /** Additional classes applied to the text input group container */
6 className?: string;
7 /** Adds disabled styling and a disabled context value which text input group main hooks into for the input itself */
8 isDisabled?: boolean;
9}
10export declare const TextInputGroupContext: React.Context<Partial<TextInputGroupProps>>;
11export declare const TextInputGroup: React.FunctionComponent<TextInputGroupProps>;
12//# sourceMappingURL=TextInputGroup.d.ts.map
\No newline at end of file