react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 773 B
JSX
import React, { Component } from 'react';
export default class CarSideIcon 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-car-side-icon ${this.props.className}`}><path d="M16 6l3 4h2c1.11 0 2 .89 2 2v3h-2a3 3 0 0 1-6 0H9a3 3 0 0 1-6 0H1v-3c0-1.11.89-2 2-2l3-4h10zm-5.5 1.5H6.748L4.864 10H10.5V7.5zm1.5 0V10h5.136l-1.884-2.5H12zm-6 6a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm12 0a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z"/></svg>
)
}
}