import * as React from 'react'; import uniqueId from 'lodash/uniqueId'; import AccessibleSVG from '../accessible-svg'; import { TwoTonedIcon } from '../iconTypes'; const ICON_CLASS = 'icon-iwork-trio'; class IconIWorkTrio extends React.Component { static defaultProps = { height: 150, width: 400, }; idPrefix = `${uniqueId(ICON_CLASS)}-`; render() { const { className = '', height, title, width } = this.props; return ( ); } } export default IconIWorkTrio;