i have a dropdown in react render else condition. i want to put the arrow down like fa-caret-down next to label selectValue. tried the font awesome icon it's not working. Code Below:
else {
return (
<select id="dropdown">
<option label={t("selectValue")} />
</select>
)
}
Any HeadsUp?