UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 816 B
import React, { Component } from 'react'; export default class SubwayVariantIcon 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-subway-variant-icon ${this.props.className}`}><path d="M18 10.998h-5v-5h5m-1.5 11a1.5 1.5 0 1 1 0-3.001 1.5 1.5 0 0 1 0 3.001zm-5.5-6H6v-5h5m-3.5 11a1.5 1.5 0 1 1 0-3.001 1.5 1.5 0 0 1 0 3.001zm4.5-15c-4.419 0-8 .5-8 4v9.5c0 1.933 1.568 3.5 3.5 3.5l-1.5 1.5v.5h12v-.5l-1.5-1.5c1.934 0 3.5-1.567 3.5-3.5v-9.5c0-3.5-3.583-4-8-4z"/></svg> ) } }