UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 820 B
import React, { Component } from 'react'; export default class MoveResizeVariantIcon 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-move-resize-variant-icon ${this.props.className}`}><path d="M1.88.464L.464 1.88l5.122 5.123H2.002v1.996H9V2.002H7.002v3.584m4 1.417v1.986h10V15h1.995V8.999a2.001 2.001 0 0 0-1.996-1.997m-13.998 4v10c0 1.098.897 1.995 1.996 1.995H15v-1.986H8.999v-10.01m6.88 3.462l-1.416 1.416 5.132 5.132h-2.592v1.986h5.994v-5.994h-1.996v2.582"/></svg> ) } }