import React, { ComponentType } from 'react'; import withFillColor from './utils/withFillColor'; import withAction from './utils/withAction'; import { ButtonProps } from '../../types'; // https://www.iconfont.cn/collections/detail?cid=11790 const Unlink: ComponentType = ({ fill }) => { return ( ); }; export default withFillColor(withAction(Unlink));