react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 698 B
JavaScript
var React = require('react');
var IconBase = require('../IconBase');
export default class FaFilesO extends React.Component {
render() {
return (
<IconBase viewBox="0 0 1792 1896.0833" {...this.props}>
<g><path d="m1696 384q40 0 68 28t28 68v1216q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-288h-544q-40 0-68-28t-28-68v-672q0-40 20-88t48-76l408-408q28-28 76-48t88-20h416q40 0 68 28t28 68v328q68-40 128-40h416z m-544 213l-299 299h299v-299z m-640-384l-299 299h299v-299z m196 647l316-316v-416h-384v416q0 40-28 68t-68 28h-416v640h512v-256q0-40 20-88t48-76z m956 804v-1152h-384v416q0 40-28 68t-68 28h-416v640h896z"/></g>
</IconBase>
);
}
}