有没有办法用像
React Icons
中的自定义图标替换内联工具栏图像?
代码(工具栏选项):
import { AiOutlineUnorderedList } from 'react-icons/ai'
export const toolbarOptions = {
options: ['list', 'link'],
list: {
options: ['unordered', 'ordered'],
unordered: {
icon: <AiOutlineUnorderedList />, //does not work
className: undefined,
},
},
link: {
options: ['link'],
},
}
我也尝试过使用
<img src="./path-to-svg"/>
但是那也不起作用......
有什么想法吗?
TIA
你只需要提供 src 或文件路径
unordered: {
icon: "../path-to.svg",
className: undefined
}