react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 792 B
JSX
import React, { Component } from 'react';
export default class SeatLegroomNormalIcon 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-normal-icon ${this.props.className}`}><path d="M5 12.002V2.998H2.998v9.005c0 2.758 2.24 5 5 5h6V15h-6A2.992 2.992 0 0 1 5 12.002zm15.497 5.995H19v-6.996A2.007 2.007 0 0 0 17.003 9h-5V2.998H6V11A3.005 3.005 0 0 0 9 14H16V21h4.496a1.5 1.5 0 0 0 1.506-1.498c0-.832-.674-1.506-1.506-1.506z"/></svg>
)
}
}