@mui/material
Version:
Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.
13 lines • 583 B
TypeScript
import * as React from 'react';
import { SxProps } from '@mui/system';
import { Theme } from "../styles/index.js";
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;