UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 801 B
import React, { Component } from 'react'; export default class ArrowExpandAllIcon 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-expand-all-icon ${this.props.className}`}><path d="M9.493 13.093l1.414 1.414L6.414 19H10v2H3v-7h2v3.586l4.493-4.493zm1.414-3.6l-1.414 1.414L5 6.414V10H3V3h7v2H6.414l4.493 4.493zm3.6 3.6L19 17.586V14h2v7h-7v-2h3.586l-4.493-4.493 1.414-1.414zm-1.414-3.6L17.586 5H14V3h7v7h-2V6.414l-4.493 4.493-1.414-1.414z"/></svg> ) } }