@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 • 516 B
TypeScript
import * as React from 'react';
import { SxProps } from '@mui/system';
import { Theme } from "../index.js";
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;