UNPKG

666 BTypeScriptView Raw
1import * as React from 'react';
2import { StandardProps } from '..';
3import { InputBaseProps } from '../InputBase';
4
5export interface OutlinedInputProps extends StandardProps<InputBaseProps, OutlinedInputClassKey> {
6 notched?: boolean;
7 labelWidth: number;
8}
9
10export type OutlinedInputClassKey =
11 | 'root'
12 | 'colorSecondary'
13 | 'focused'
14 | 'disabled'
15 | 'adornedStart'
16 | 'adornedEnd'
17 | 'error'
18 | 'marginDense'
19 | 'multiline'
20 | 'notchedOutline'
21 | 'input'
22 | 'inputMarginDense'
23 | 'inputMultiline'
24 | 'inputAdornedStart'
25 | 'inputAdornedEnd';
26
27declare const OutlinedInput: React.ComponentType<OutlinedInputProps>;
28
29export default OutlinedInput;