/
githubmirror
/
material-ui
Обзор
Документация
Войти
/
githubmirror
/
material-ui
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packages/mui-material/src/NativeSelect/NativeSelectInput.d.ts
16 строк
578 B
Brijesh Bittu
[code-infra] Enable undefined addition to optional properties (#47750)
19 фев 2026, 12:14
Не верифицирован
19 фев 2026, 12:14
09f4536
Код
Авторство
О чём код?
import * as React from 'react'; import { SxProps } from '@mui/system'; import { Theme } from '../styles'; export interface NativeSelectInputProps extends React.SelectHTMLAttributes<HTMLSelectElement> { disabled?: boolean | undefined; IconComponent: React.ElementType; inputRef?: React.Ref<HTMLSelectElement> | undefined; variant?: 'standard' | 'outlined' | 'filled' | undefined; error?: boolean | undefined; sx?: SxProps<Theme> | undefined; } declare const NativeSelectInput: React.JSXElementConstructor<NativeSelectInputProps>; export default NativeSelectInput;