metadata-based-explorer1
Version:
Box UI Elements
21 lines (18 loc) • 1.08 kB
JavaScript
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import * as React from 'react';
import IconFileBase from './IconFileBase';
var IconFileSpreadsheet = function IconFileSpreadsheet(props) {
return React.createElement(IconFileBase, _extends({}, props, {
baseClassName: "icon-file-spreadsheet"
}), React.createElement("path", {
d: "M25 27H7V5h13l5 5v17z",
fill: "#fff"
}), React.createElement("path", {
d: "M20 4H7a1 1 0 0 0-1 1v22a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V9.89zm5 23H7V5h13v4a1 1 0 0 0 1 1h4z",
fill: "#3fb87f"
}), React.createElement("path", {
d: "M21 13H11a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1v-8a1 1 0 0 0-1-1zm-10 1h3v2h-3zm0 3h3v2h-3zm0 5v-2h3v2zm10 0h-6v-2h6zm0-3h-6v-2h6zm-6-3v-2h6v2z",
fill: "#3fb87f"
}));
};
export default IconFileSpreadsheet;