{title}
);
}, [
value,
title,
paddingSize,
placeholderValue,
selectList,
selectList,
selectLoading
]);
return Redio;
}
export default LabelSearchSelect;
export interface ILabelSearchSelect {
title: string | number;
change: Function;
size: string;
value?: string | number;
paddingSize?: string;
placeholderValue?: string;
selectList?: any[];
disabled?: boolean;
selectLoading?: boolean;
wrapStyle?: React.CSSProperties;
}