index.js 283 B

12345678
  1. import React from 'react';
  2. import { Icon as AIcon } from 'antd';
  3. function Icon(props) {
  4. const { type, theme = 'outlined', onClick, color = '000' } = props;
  5. return <AIcon type={type} theme={theme} style={{ color }} onClick={() => onClick && onClick()} />;
  6. }
  7. export default Icon;