UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 649 B
import React, { Component } from 'react'; export default class HighwayIcon 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-highway-icon ${this.props.className}`}><path d="M10 2L8 8h3V2h-1zm3 0v6h3l-2-6h-1zM2 9v1h2v1h2v-1h12l.063 1H20v-1h2V9H2zm5 2L3.344 22H11V11H7zm6 0v11h7.656L17 11h-4z"/></svg> ) } }