UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 787 B
import React, { Component } from 'react'; export default class DirectionsForkIcon 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-directions-fork-icon ${this.props.className}`}><path fillRule="evenodd" d="M2.998 3.999V12.5L6 9.502 9 12.997C10 14 10 15 10 15v6.001h3.999V14s0-1.002-.533-1.997c-.531-1-1.463-2.002-1.463-2.002L8.998 6.582 11.499 4m6.498 0l-4.462 4.467.464.533S14.93 10 15.469 11c.215.4.327.787.405 1.128L21 7.003"/></svg> ) } }