react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 688 B
JSX
import React, { Component } from 'react';
export default class ElevationDeclineIcon 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-decline-icon ${this.props.className}`}><path d="M21 21H3v-9.75l6.455 3.726 3.768-2.175L21 17.291V21zM3 8.94V6.75l6.455 3.726 3.768-2.175L21 12.791v2.191l-7.777-4.49-3.768 2.175L3 8.941z"/></svg>
)
}
}