1
0
Fork 0
react-playground/node_modules/@mui/material/OutlinedInput/NotchedOutline.d.ts

12 lines
No EOL
532 B
TypeScript

import * as React from 'react';
import { InternalStandardProps as StandardProps } from "../internal/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;