Update AmountIn.js

This commit is contained in:
Daniel
2022-11-05 13:23:33 +01:00
parent db65a242ba
commit 429646f883

View File

@@ -27,9 +27,10 @@ const AmountIn = () => {
onChange={(e) => typeof onChange === "function" && onChange(e.target.value)}
className={styles.amountInput}
/>
<div className="relative" onClick={() => setShowList(!showList)}>
<button className={styles.currencyButton}>
{"FHT"}
{activeCurrency}
<img
src={chevronDown}
alt="cheveron-down"
@@ -58,8 +59,6 @@ const AmountIn = () => {
))}
</ul>
)}
</div>
</div>
)