UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 917 B
import React, { Component } from 'react'; export default class MetronomeIcon 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-metronome-icon ${this.props.className}`}><path d="M12 1.75l-3.426.918-4.512 16.857c-.037.153-.062.31-.062.475 0 1.108.892 2 2 2h12c1.108 0 2-.892 2-2a2 2 0 0 0-.063-.475l-1.36-5.101L17 16l.195 1h-3.78l2.835-2.836-1.414-1.414-4.25 4.25H6.805l3.482-13h3.426l1.453 5.428 1.633-1.633-1.373-5.127L12 1.75zM11.25 5v9.75l1.5-1.5V5h-1.5zm8.535 2.8l-2.828 2.829-.707-.707-1.414 1.414 2.828 2.828 1.414-1.414-.707-.707L21.2 9.215 19.785 7.8z"/></svg> ) } }