UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

13 lines (9 loc) 395 B
import * as React from 'react'; export interface NativeSelectInputProps extends React.SelectHTMLAttributes<HTMLSelectElement> { disabled?: boolean; IconComponent?: React.ElementType; inputRef?: React.Ref<HTMLSelectElement>; variant?: 'standard' | 'outlined' | 'filled'; } declare const NativeSelectInput: React.ComponentType<NativeSelectInputProps>; export default NativeSelectInput;