You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.1 KiB
38 lines
1.1 KiB
5 years ago
|
/* eslint-disable camelcase */
|
||
|
import React from 'react';
|
||
|
import AntdIcon, { createFromIconfontCN } from '@ant-design/icons';
|
||
|
|
||
|
import { withThemeSuffix, removeTypeTheme, getThemeFromTypeName, alias } from './utils';
|
||
|
import warning from '../../../../components/_util/warning';
|
||
|
|
||
|
const IconFont = createFromIconfontCN({
|
||
|
scriptUrl: '//at.alicdn.com/t/font_1329669_t1u72b9zk8s.js',
|
||
|
});
|
||
|
|
||
|
const OldIcon = props => {
|
||
|
const { type, theme } = props;
|
||
|
let computedType = type;
|
||
|
if (theme) {
|
||
|
const themeInName = getThemeFromTypeName(type);
|
||
|
warning(
|
||
|
!themeInName || theme === themeInName,
|
||
|
'Icon',
|
||
|
`The icon name '${type}' already specify a theme '${themeInName}',` +
|
||
|
` the 'theme' prop '${theme}' will be ignored.`,
|
||
|
);
|
||
|
}
|
||
|
computedType = withThemeSuffix(removeTypeTheme(alias(computedType)), theme || 'outlined');
|
||
|
return <IconFont {...props} type={`icon-${computedType}`} />;
|
||
|
};
|
||
|
|
||
|
const Icon = props => {
|
||
|
if (typeof props.type === 'string') {
|
||
|
return <OldIcon {...props} />;
|
||
|
}
|
||
|
return <AntdIcon {...props} />;
|
||
|
};
|
||
|
|
||
|
Icon.createFromIconfontCN = createFromIconfontCN;
|
||
|
|
||
|
export default Icon;
|