import React from 'react';
import { SelectProps } from '@bigbinary/neetoui';
type CurrencyProps = {
allowedCurrencies?: string[];
} & SelectProps;
/**
*
* A component that allows you to select a currency.
*
* 
*
* @example
*
* import { useState } from "react";
* import { Currency } from "@bigbinary/neeto-molecules/Currency";
*
* const CurrencyContainer = () => {
* const [currency, setCurrency] = useState();
* return