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.

72 lines
1.5 KiB

import * as React from 'react';
import classNames from 'classnames';
import { antDesignIcons } from '@ant-design/icons';
import ReactIcon from '@ant-design/icons-react';
import CustomIcon from './CustomIcon';
import create from './IconFont';
import { getComputedSvgStyle } from './utils';
6 years ago
ReactIcon.add(...antDesignIcons);
export interface IconProps {
type: string;
className?: string;
title?: string;
8 years ago
onClick?: React.MouseEventHandler<any>;
spin?: boolean;
style?: React.CSSProperties;
svgStyle?: React.CSSProperties;
svgClassName?: string;
rotate?: number;
flip?: 'horizontal' | 'vertical' | 'both';
tag?: string;
prefixCls?: string;
}
const Icon: React.SFC<IconProps> = (props: IconProps) => {
const {
type,
className = '',
spin,
flip,
svgClassName,
tag = 'i',
onClick,
style,
rotate = 0,
svgStyle = {},
} = props;
const classString = classNames(
{
[`anticon`]: true,
[`anticon-spin`]: !!spin || type === 'loading',
[`anticon-${type}`]: true,
},
className,
);
return React.createElement(
tag,
{
className: classString,
style,
onClick,
},
<ReactIcon
className={svgClassName}
type={type}
style={getComputedSvgStyle({ rotate, flip }, svgStyle)}
/>,
);
8 years ago
};
export type IconType = React.SFC<IconProps> & {
CustomIcon: typeof CustomIcon;
create: typeof create;
};
(Icon as IconType).CustomIcon = CustomIcon;
(Icon as IconType).create = create;
export default Icon as IconType;