react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 824 B
JSX
import React, { Component } from 'react';
export default class SeatLegroomReducedIcon 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-seat-legroom-reduced-icon ${this.props.className}`}><path d="M19.971 19.199A1.51 1.51 0 0 1 18.501 21H14v-3.004L15 14H8.999A3.005 3.005 0 0 1 6 11V2.998h6.001v6h5c1.098 0 1.997.905 1.997 2.003l-1.996 6.996h1.44c.727 0 1.386.494 1.528 1.202zM5 12.002V2.998H2.998v9.005c0 2.758 2.24 5 5 5h4.004V15H7.997A2.992 2.992 0 0 1 5 12.002z"/></svg>
)
}
}