import React from 'react'; import classNames from 'classnames'; export interface IconTypes { type: string; color?: string; size?: string | number; style?: React.CSSProperties; spin?: boolean; className?: string; prefixCls?: string; } const Icon = (props: IconTypes) => { const { prefixCls = 'ty-icon', type, color, size, style, spin, className, ...otherProps } = props; const cls = classNames(prefixCls, className, `ty--${type}`, { [`${prefixCls}_spin`]: spin, }); return ; }; export default Icon;