123456789 |
- import { createFromIconfontCN } from '@ant-design/icons';
- const Icon = createFromIconfontCN({
- scriptUrl: '//at.alicdn.com/t/font_3184967_ll9zpyz6dxk.js',
- });
- export default ({ type, className, style = {} }) => {
- return <Icon style={style} className={className} type={`icon-manage${type}`} />;
- };
|