react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 649 B
JSX
import React, { Component } from 'react';
export default class ArrowCompressIcon 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-compress-icon ${this.props.className}`}><path d="M19.5 3.09L15 7.59V4h-2v7h7V9h-3.59l4.5-4.5-1.41-1.41zM4 13v2h3.59l-4.5 4.5 1.41 1.41 4.5-4.5V20h2v-7H4z"/></svg>
)
}
}