react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 809 B
JSX
import React, { Component } from 'react';
export default class ArrowCompressAllIcon 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-all-icon ${this.props.className}`}><path d="M19.493 3.093l1.414 1.414L16.414 9H20v2h-7V4h2v3.586l4.493-4.493zm1.414 16.4l-1.414 1.414L15 16.414V20h-2v-7h7v2h-3.586l4.493 4.493zm-16.4-16.4L9 7.586V4h2v7H4V9h3.586L3.093 4.507l1.414-1.414zm-1.414 16.4L7.586 15H4v-2h7v7H9v-3.586l-4.493 4.493-1.414-1.414z"/></svg>
)
}
}