import React, { ComponentType } from 'react'; import withFillColor from './utils/withFillColor'; import withAction from './utils/withAction'; import { ButtonProps } from '../../types'; const Bold: ComponentType = ({ fill }) => { return ( ); }; export default withFillColor(withAction(Bold));