react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 658 B
JSX
import React, { Component } from 'react';
export default class CaravanIcon 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-caravan-icon ${this.props.className}`}><path d="M4 4a2 2 0 0 0-2 2v11h2a3 3 0 0 0 6 0h12v-2h-3V6a2 2 0 0 0-2-2H4zm1 5h4v3H5V9zm7 0h4v6h-4V9zm-5 7a1 1 0 1 1 0 2 1 1 0 0 1 0-2z"/></svg>
)
}
}