UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 854 B
import React, { Component } from 'react'; export default class BoomboxIcon extends Component { static defaultProps = { className: '' }; constructor(props) { super(props); } render() { return ( <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" baseProfile="full" viewBox="0 0 24.00 24.00" {...this.props} className={`material material-boombox-icon ${this.props.className}`}><path d="M7 5L5 7v1H3c-.554 0-1 .446-1 1v8c0 .554.446 1 1 1h18c.554 0 1-.446 1-1V9c0-.554-.446-1-1-1h-2V7l-2-2H7zm0 2h10v1H7V7zm4 2h2a.499.499 0 1 1 0 1h-2a.499.499 0 1 1 0-1zm-3.5 1.5a3 3 0 1 1 0 6 3 3 0 0 1 0-6zm9 0a3 3 0 1 1 0 6 3 3 0 0 1 0-6zm-9 1.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm9 0a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z"/></svg> ) } }