import { SelectProps } from "@radix-ui/react-select" import { useMemo } from "react" import { FormSelect } from "./simple" export const FormSelectCurrency = ({ currencies, title, emptyValue, placeholder, hideIfEmpty = false, isRequired = false, ...props }: { currencies: { code: string; name: string }[] title?: string emptyValue?: string placeholder?: string hideIfEmpty?: boolean isRequired?: boolean } & SelectProps) => { const items = useMemo( () => currencies.map((currency) => ({ code: currency.code, name: `${currency.code}`, badge: currency.name, })), [currencies] ) return ( ) }