UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 909 B
import React, { Component } from 'react'; export default class BikeIcon 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-bike-icon ${this.props.className}`}><path d="M5 20.498a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7zm0-8.5a5 5 0 1 0 0 10 5 5 0 0 0 0-10zm9.8-2H19v-1.8h-3.202l-1.934-3.266a1.698 1.698 0 0 0-2.666-.336L7.5 8.293a1.696 1.696 0 0 0 .349 2.677l3.35 2.028v5H13V11.52l-2.25-1.672 2.32-2.33M19 20.498a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7zm0-8.5a5 5 0 1 0 0 10 5 5 0 0 0 0-10zm-3-7.2c.992 0 1.8-.807 1.8-1.8s-.808-1.8-1.8-1.8a1.8 1.8 0 0 0 0 3.6z"/></svg> ) } }