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