UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 754 B
import React, { Component } from 'react'; export default class BusArticulatedEndIcon 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-bus-articulated-end-icon ${this.props.className}`}><path d="M21.5 6L20 7.5 21.5 9 20 10.5l1.5 1.5-1.5 1.5 1.5 1.5h-9a3 3 0 1 1-6 0h-4V8c0-1.11.89-2.025 2-2h17zm-3 1.5H15V10h3.5V7.5zm-5 0h-4V10h4V7.5zM8 7.5H4V10h4V7.5zm1.5 6a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z"/></svg> ) } }