UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 706 B
import React, { Component } from 'react'; export default class RoadVariantIcon 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-road-variant-icon ${this.props.className}`}><path d="M18.1 4.8c-.1-.5-.5-.8-1-.8H13l.2 3h-2.4l.2-3H6.8c-.5 0-.9.4-1 .8l-2.7 14c-.1.6.4 1.2 1 1.2H10l.3-5h3.4l.3 5h5.8c.6 0 1.1-.6 1-1.2l-2.7-14zM10.4 13l.2-4h2.6l.2 4h-3z"/></svg> ) } }