react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 774 B
JSX
import React, { Component } from 'react';
export default class SeatFlatIcon 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-flat-icon ${this.props.className}`}><path d="M22.003 11.001v1.997H8.999V7.003h8.998A3.999 3.999 0 0 1 22.003 11zM2.003 14V16h5.994v1.996h8.004v-1.996h6.002V14M7.139 12.1A2.995 2.995 0 0 0 7.1 7.861a2.995 2.995 0 0 0-4.239.039 2.995 2.995 0 0 0 .039 4.239 2.995 2.995 0 0 0 4.239-.039z"/></svg>
)
}
}