react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 980 B
JSX
import React, { Component } from 'react';
export default class FileHiddenIcon 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-file-hidden-icon ${this.props.className}`}><path d="M13 8.998h1V11h-3V7h2v1.998zm5.5 0l-2.117-2.116 1.25-1.25L20 7.998V10H18v1h-3V8.998h3.5zm-5.5-5.5V2h-1v2h1v2h-2V4H9V2H8v2H6v1H4.009V3.998c0-1.104.885-2 1.99-2h8L16.36 4.36l-1.25 1.25L13 3.499zm7 16.5a2 2 0 0 1-2 2h-2V20h2v-1h2v.998zM18 15h2v3h-2v-3zm-6 6.998V20h3v1.998h-3zm-4 0V20h3v1.998H8zm-2.01 0a1.992 1.992 0 0 1-1.99-2V18h2v2h1v1.998H5.99zM4.002 14H6v3H4.001l.002-3zm.003-4H6v3H4.004l.002-3zM18 11h2v3h-2v-3zM4.008 6H6v3H4.006l.002-3z"/></svg>
)
}
}