@material-ui/core
Version:
React components that implement Google's Material Design.
18 lines (14 loc) • 551 B
TypeScript
import * as React from 'react';
export interface NativeSelectInputProps {
disabled?: boolean;
IconComponent?: React.ElementType;
inputRef?: (
ref: HTMLSelectElement | { node: HTMLInputElement; value: NativeSelectInputProps['value'] },
) => void;
name?: string;
onChange?: (event: React.ChangeEvent<HTMLSelectElement>, child: React.ReactNode) => void;
value?: unknown;
variant?: 'standard' | 'outlined' | 'filled';
}
declare const NativeSelectInput: React.ComponentType<NativeSelectInputProps>;
export default NativeSelectInput;