UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 722 B
import React, { Component } from 'react'; export default class TrainIcon 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-train-icon ${this.props.className}`}><path d="M18 9.998H6v-5h12m-6 12A2 2 0 1 1 11.997 13 2 2 0 0 1 12 17zm-8-1.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-10.5c0-3.5-3.583-4-8-4-4.419 0-8 .5-8 4v10.5z"/></svg> ) } }