我想知道是否可以将 react-icons 与 select-option 元素一起使用。我在谷歌上搜索了很多关于这个问题的信息,但所有的解决方案都与 react-select 库相关,而不是简单的 select-option 元素。
这就是我在做什么
import {ReactIcon} from "react-icons";
.............
some code here
.............
<select>
<option> sometext <ReactIcon /> </option>
<option> sometext <ReactIcon /> </option>
</select>
结果:
sometext [Object object]
sometext [Object object]
我想要的是:
sometext {the icon itself}
sometext {the icon itself}
谢谢