import { createFromIconfontCN } from '@ant-design/icons';
const IconFont = createFromIconfontCN({
scriptUrl: '//at.alicdn.com/t/font_1920998_qwtyc6g5q7f.js',
});
ReactDOM.render(
<div>
<IconFont type="iconright"></IconFont>
</div>,
mountNode,
);
Thank you!
If you include a style
property with the color you want, it changes the color.
<IconFont type="iconright" style={{ color: "green" }} />
check this sandbox