UNPKG

521 BTypeScriptView Raw
1import * as React from 'react';
2import { InternalStandardProps as StandardProps } from '..';
3
4export interface NotchedOutlineProps
5 extends StandardProps<React.FieldsetHTMLAttributes<HTMLFieldSetElement>> {
6 disabled?: boolean;
7 error?: boolean;
8 focused?: boolean;
9 label?: React.ReactNode;
10 notched: boolean;
11}
12
13export type NotchedOutlineClassKey = keyof NonNullable<NotchedOutlineProps['classes']>;
14
15declare const NotchedOutline: React.JSXElementConstructor<NotchedOutlineProps>;
16
17export default NotchedOutline;