UNPKG

@mui/material

Version:

Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.

12 lines 523 B
import * as React from 'react'; import { InternalStandardProps as StandardProps } from "../index.js"; export interface NotchedOutlineProps extends StandardProps<React.FieldsetHTMLAttributes<HTMLFieldSetElement>> { disabled?: boolean; error?: boolean; focused?: boolean; label?: React.ReactNode; notched: boolean; } export type NotchedOutlineClassKey = keyof NonNullable<NotchedOutlineProps['classes']>; declare const NotchedOutline: React.JSXElementConstructor<NotchedOutlineProps>; export default NotchedOutline;