UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 699 B
import React, { Component } from 'react'; export default class VibrationIcon 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-vibration-icon ${this.props.className}`}><path d="M16 19H8V5h8m.5-2h-9C6.67 3 6 3.67 6 4.5v15c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-15c0-.83-.67-1.5-1.5-1.5zM19 17h2V7h-2m3 2v6h2V9M3 17h2V7H3m-3 8h2V9H0v6z"/></svg> ) } }