UNPKG

510 BTypeScriptView Raw
1import * as React from 'react';
2import { StandardProps } from '..';
3
4export interface NotchedOutlineProps
5 extends StandardProps<React.FieldsetHTMLAttributes<HTMLFieldSetElement>, NotchedOutlineClassKey> {
6 disabled?: boolean;
7 error?: boolean;
8 focused?: boolean;
9 labelWidth: number;
10 notched: boolean;
11}
12
13export type NotchedOutlineClassKey = 'root' | 'legend' | 'focused' | 'error' | 'disabled';
14
15declare const NotchedOutline: React.ComponentType<NotchedOutlineProps>;
16
17export default NotchedOutline;