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