tdesign-react
Version:
TDesign Component for React
18 lines (17 loc) • 746 B
TypeScript
import { TdSelectInputProps } from './type';
export interface SelectInputCommonProperties {
status?: TdSelectInputProps['status'];
tips?: TdSelectInputProps['tips'];
clearable?: TdSelectInputProps['clearable'];
disabled?: TdSelectInputProps['disabled'];
label?: TdSelectInputProps['label'];
placeholder?: TdSelectInputProps['placeholder'];
readonly?: TdSelectInputProps['readonly'];
suffix?: TdSelectInputProps['suffix'];
suffixIcon?: TdSelectInputProps['suffixIcon'];
size?: TdSelectInputProps['size'];
onPaste?: TdSelectInputProps['onPaste'];
onEnter?: TdSelectInputProps['onEnter'];
onMouseenter?: TdSelectInputProps['onMouseenter'];
onMouseleave?: TdSelectInputProps['onMouseleave'];
}