UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 892 B
import React, { Component } from 'react'; export default class SvgIcon 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-svg-icon ${this.props.className}`}><path d="M5.126 10.705h3.748l-2.65-2.65a1.831 1.831 0 1 1 1.831-1.831l2.65 2.65V5.126a1.831 1.831 0 1 1 2.59 0v3.748l2.65-2.65a1.831 1.831 0 1 1 1.831 1.831l-2.65 2.65h3.748a1.831 1.831 0 1 1 0 2.59h-3.748l2.65 2.65a1.831 1.831 0 1 1-1.831 1.831l-2.65-2.65v3.748a1.831 1.831 0 1 1-2.59 0v-3.748l-2.65 2.65a1.831 1.831 0 1 1-1.831-1.831l2.65-2.65H5.126a1.831 1.831 0 1 1 0-2.59z"/></svg> ) } }