react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 745 B
JSX
import React, { Component } from 'react';
export default class FlipToFrontIcon 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-flip-to-front-icon ${this.props.className}`}><path d="M7 20.998h2v-2H7m4 2h2v-2h-2m8-4H9v-10h10m0-2H9a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10c1.102 0 2-.896 2-2v-10c0-1.104-.898-2-2-2zm-4 18h2v-2h-2m-12-10h2v-2H3m2 14v-2H3a2 2 0 0 0 2 2zm-2-4h2v-2H3m0-2h2v-2H3v2z"/></svg>
)
}
}