UNPKG

706 BTypeScriptView Raw
1import * as React from 'react';
2export declare enum InputGroupTextVariant {
3 default = "default",
4 plain = "plain"
5}
6export interface InputGroupTextProps extends React.HTMLProps<HTMLSpanElement | HTMLLabelElement> {
7 /** Additional classes added to the input group text. */
8 className?: string;
9 /** Content rendered inside the input group text. */
10 children: React.ReactNode;
11 /** Component that wraps the input group text. */
12 component?: React.ReactNode;
13 /** Input group text variant */
14 variant?: InputGroupTextVariant | 'default' | 'plain';
15}
16export declare const InputGroupText: React.FunctionComponent<InputGroupTextProps>;
17//# sourceMappingURL=InputGroupText.d.ts.map
\No newline at end of file