paradiego
This commit is contained in:
16
node_modules/@mui/material/NativeSelect/NativeSelectInput.d.ts
generated
vendored
Normal file
16
node_modules/@mui/material/NativeSelect/NativeSelectInput.d.ts
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user