UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 774 B
import React, { Component } from 'react'; export default class ArrowAllIcon 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-arrow-all-icon ${this.props.className}`}><path d="M13 11h5l-1.5-1.5 1.42-1.42L21.838 12l-3.92 3.92L16.5 14.5l1.51-1.5H13v5l1.5-1.5 1.42 1.42L12 21.838l-3.92-3.92L9.5 16.5 11 18v-5H6l1.5 1.5-1.42 1.42L2.162 12l3.92-3.92L7.5 9.5 6 11h5V6L9.5 7.5 8.08 6.08 12 2.162l3.92 3.92L14.5 7.5 13 6v5z"/></svg> ) } }