import * as React from 'react'; import uniqueId from 'lodash/uniqueId'; import AccessibleSVG from '../accessible-svg'; import { TwoTonedIcon } from '../iconTypes'; const ICON_CLASS = 'icon-box-tools-download'; class IconBoxToolsDownload extends React.Component { static defaultProps = { className: '', height: 134, width: 136, }; idPrefix = `${uniqueId(ICON_CLASS)}-`; render() { const { className, height, title, width } = this.props; return ( TOOLS ); } } export default IconBoxToolsDownload;