I am using to show down arrow in my navbar dropdown. So the list item of unordered list is:
<li>
<div className="dropdown">
<button className="dropbtn">Accessories <FiChevronDown />
</button>
<div className="dropdown-content">
<NavLink to="/category/golf-balls">Golf Balls</NavLink>
<NavLink to="/category/golf-shoes">Golf Shoes</NavLink>
<NavLink to="/category/golf-accessories">Golf Accessories</NavLink>
</div>
</div>
</li>
So, is there any way to put that icon on the right side of "Accessories" word? Thanks