react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 680 B
JSX
import React, { Component } from 'react';
export default class ElevationRiseIcon 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-elevation-rise-icon ${this.props.className}`}><path d="M3 21v-3.709l7.777-4.49 3.769 2.175L21 11.25V21H3zM21 8.94l-6.455 3.727-3.768-2.175L3 14.982v-2.19l7.777-4.49 3.769 2.175L21 6.75v2.19z"/></svg>
)
}
}