score:1

Accepted answer

dropdown supports an icon prop which can be used to replace the default arrow icon, as you describe is your intention in the comments. simply pass your replacement in there.

<dropdown simple={true} text="dropdown" icon={somenodeorobject}>
 <dropdown.menu>
   <dropdown.item>profile 1</dropdown.item>
   <dropdown.item>profile 2</dropdown.item>
   <dropdown.item>profile 3</dropdown.item>
   <dropdown.item>profile 4</dropdown.item>
 </dropdown.menu>
 </dropdown>

Related Query

More Query from same tag