import React from 'react';
import { Icon as AIcon } from 'antd';

function Icon(props) {
  const { type, theme = 'outlined', onClick, color = '000' } = props;
  return <AIcon type={type} theme={theme} style={{ color }} onClick={() => onClick && onClick()} />;
}
export default Icon;