UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 688 B
import React, { Component } from 'react'; export default class VolumeMuteIcon 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-volume-mute-icon ${this.props.className}`}><path d="M3 9h4l5-5v16l-5-5H3V9zm13.586 3L14 9.414 15.414 8 18 10.586 20.586 8 22 9.414 19.414 12 22 14.586 20.586 16 18 13.414 15.414 16 14 14.586 16.586 12z"/></svg> ) } }