/
sweetebin
/
hackaton_26
Обзор
Документация
Войти
/
sweetebin
/
hackaton_26
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
web-form-project/node_modules/@mui/material/NativeSelect/NativeSelectInput.d.ts
16 строк
511 B
AKorostelev
web form project added
28 июл 2026, 10:57
28 июл 2026, 10:57
4339e77
Код
Авторство
О чём код?
import * as React from 'react'; import { SxProps } from '@mui/system'; import { Theme } from '..'; export interface NativeSelectInputProps extends React.SelectHTMLAttributes<HTMLSelectElement> { disabled?: boolean; IconComponent: React.ElementType; inputRef?: React.Ref<HTMLSelectElement>; variant?: 'standard' | 'outlined' | 'filled'; error?: boolean; sx?: SxProps<Theme>; } declare const NativeSelectInput: React.JSXElementConstructor<NativeSelectInputProps>; export default NativeSelectInput;