react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 629 B
JSX
import React, { Component } from 'react';
export default class ArrangeBringToFrontIcon 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-arrange-bring-to-front-icon ${this.props.className}`}><path d="M2 2h9v4H9V4H4v5h2v2H2V2zm20 11v9h-9v-4h2v2h5v-5h-2v-2h4zM8 8h8v8H8V8z"/></svg>
)
}
}