UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

18 lines (13 loc) 510 B
import * as React from 'react'; import { StandardProps } from '..'; export interface NotchedOutlineProps extends StandardProps<React.FieldsetHTMLAttributes<HTMLFieldSetElement>, NotchedOutlineClassKey> { disabled?: boolean; error?: boolean; focused?: boolean; labelWidth: number; notched: boolean; } export type NotchedOutlineClassKey = 'root' | 'legend' | 'focused' | 'error' | 'disabled'; declare const NotchedOutline: React.ComponentType<NotchedOutlineProps>; export default NotchedOutline;