@activelylearn/material-ui
Version:
Material-UI's workspace package
17 lines (13 loc) • 509 B
TypeScript
import * as React from 'react';
export interface NativeSelectInputProps {
disabled?: boolean;
IconComponent?: React.ReactType;
inputRef?: (
ref: HTMLSelectElement | { node: HTMLInputElement; value: NativeSelectInputProps['value'] },
) => void;
name?: string;
onChange?: (event: React.ChangeEvent<HTMLSelectElement>, child: React.ReactNode) => void;
value?: string | number;
}
declare const NativeSelectInput: React.ComponentType<NativeSelectInputProps>;
export default NativeSelectInput;