import {whiteDropArrow} from "../../images"; import React from "react"; import {Text} from "@chakra-ui/layout"; import {HStack, Image, Menu, MenuButton, MenuItem, MenuList} from "@chakra-ui/react"; function CustomStaticDropDownBlue(props: any) { const { options, placeholder, OnChange, } = props; return ( <> {placeholder} {options.map((option: any, index: number) => { return ( { OnChange(option.value) }} > {option.label} ) }) } ); } export default CustomStaticDropDownBlue;