import * as React from 'react'; import uniqueId from 'lodash/uniqueId'; import AccessibleSVG from '../accessible-svg'; import { TwoTonedIcon } from '../iconTypes'; const ICON_CLASS = 'across-devices-illustration'; class AcrossDevicesIllustration extends React.PureComponent { static defaultProps = { className: '', height: 130, width: 420, }; idPrefix = `${uniqueId(ICON_CLASS)}-`; render() { const { className, height, title, width } = this.props; return ( ); } } export default AcrossDevicesIllustration;