import { Select } from 'antd'; import classnames from "classnames" import FloatLabel from "./FloatLabel/index"; import React, { useState } from "react"; export const DropDowns = ({ options, onChangeFunction, isOnchanges, className, defaultValue, searchKeys = ["label"], disabled, ...props }) => { const [inpValue, setInputValue] = useState('') const [isOnchange, setisOnchange] = useState(isOnchanges) const changeStatus = async () => { await setisOnchange(true) } const { field, onChange, label, onBlur, forwardedRef, required, valueData, labelChange, ...rest } = props; return (