UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 772 B
import React, { Component } from 'react'; export default class VanPassengerIcon 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-van-passenger-icon ${this.props.className}`}><path d="M3 7c-1.11 0-2 .89-2 2v8h2a3 3 0 0 0 6 0h6a3 3 0 0 0 6 0h2v-4c0-1.11-.89-2-2-2l-3-4H3zm0 1.5h4V11H3V8.5zm6 0h4V11H9V8.5zm6 0h2.5l1.96 2.5H15V8.5zm-9 7a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3zm12 0a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3z"/></svg> ) } }