有没有使用<use />标签的办法
#3806
-
antd推荐使用这种方法引入Iconfont,本质是使用 import { createFromIconfontCN } from '@ant-design/icons';
const MyIcon = createFromIconfontCN({
scriptUrl: '//at.alicdn.com/t/font_8d5l8fzk5b87iudi.js', // 在 iconfont.cn 上生成
});
ReactDOM.render(<MyIcon type="icon-example" />, mountedNode); |
Beta Was this translation helpful? Give feedback.
Answered by
hustcc
Apr 17, 2024
Replies: 1 comment
-
G6 5.0 中的 toolbar 组件支持了这种用法,在节点中用这个话,需要使用 React 自定义节点。 |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
hustcc
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
G6 5.0 中的 toolbar 组件支持了这种用法,在节点中用这个话,需要使用 React 自定义节点。