UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 884 B
import React, { Component } from 'react'; export default class TransitTransferIcon 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-transit-transfer-icon ${this.props.className}`}><path d="M16.49 15.5H22V17h-5.51v1.75L14 16.25l2.49-2.5v1.75zm3.02 4.25V18L22 20.5 19.51 23v-1.75H14v-1.5h5.51zM9.5 5.5c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM5.75 8.9L4 9.65V13H2V8.3l5.25-2.15c.25-.1.5-.15.75-.15.7 0 1.35.35 1.7.95l.95 1.6C11.55 10 13.15 11 15 11v2c-2.2 0-4.15-1-5.45-2.6l-.6 3L11 15.45V23H9v-6l-2.15-2-1.75 8H3L5.75 8.9z"/></svg> ) } }