/* eslint-disable max-len */ import * as React from 'react'; import { HTMLAttributes, Component } from 'react'; interface Props extends HTMLAttributes { size?: number; color?: string; } class CloseIcon extends Component { public render() { const { size = 10, ...props } = this.props; const color = this.props.color || 'black'; return ( ); } } export default CloseIcon;