@mui/material
Version:
Quickly build beautiful React apps. MUI is a simple and customizable component library to build faster, beautiful, and more accessible React applications. Follow your own design system, or start with Material Design.
18 lines (13 loc) • 521 B
TypeScript
import * as React from 'react';
import { InternalStandardProps as StandardProps } from '..';
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;