react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 754 B
JSX
import React, { Component } from 'react';
export default class VolumeHighIcon 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-high-icon ${this.props.className}`}><path d="M14 3.229v2.063a7 7 0 0 1 5 6.706 7.001 7.001 0 0 1-5 6.707v2.063c4.006-.911 7-4.488 7-8.77 0-4.282-2.994-7.86-7-8.77zm2.5 8.769c0-1.765-1.02-3.29-2.5-4.027v8.055a4.5 4.5 0 0 0 2.5-4.028zm-13.5-3v6h4l5 5v-16l-5 5H3z"/></svg>
)
}
}