react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 710 B
JSX
import React, { Component } from 'react';
export default class TuneVerticalIcon 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-tune-vertical-icon ${this.props.className}`}><path d="M5 2.998v9.005H2.998v1.996H5V21h2.003V14h1.996v-1.997H7.002V2.998m4 0v5H8.998V10H11v11.001h1.997V10H15V7.997h-2.002v-5m4.005 0V14H15V16h2.003v5h1.996v-5H21V14H19V2.998"/></svg>
)
}
}