/
githubmirror
/
material-ui
Обзор
Документация
Войти
/
githubmirror
/
material-ui
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packages/mui-material/src/Input/Input.d.ts
40 строк
1 KB
Albert Yu
[input] Prevent `notched` prop leaking into DOM (#48281)
15 апр 2026, 17:16
Не верифицирован
15 апр 2026, 17:16
9763c96
Код
Авторство
О чём код?
import { SxProps } from '@mui/system'; import { Theme } from '../styles'; import { InternalStandardProps as StandardProps } from '../internal'; import { InputBaseProps } from '../InputBase'; import { InputClasses } from './inputClasses'; export interface InputProps extends StandardProps<InputBaseProps> { /** * Override or extend the styles applied to the component. */ classes?: Partial<InputClasses> | undefined; /** * If `true`, the `input` will not have an underline. * @default false */ disableUnderline?: boolean | undefined; /** * @internal */ notched?: boolean | undefined; /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx?: SxProps<Theme> | undefined; } /** * * Demos: * * - [Text Field](https://mui.com/material-ui/react-text-field/) * * API: * * - [Input API](https://mui.com/material-ui/api/input/) * - inherits [InputBase API](https://mui.com/material-ui/api/input-base/) */ declare const Input: ((props: InputProps) => React.JSX.Element) & { muiName: string }; export default Input;