metadata-based-explorer1
Version:
Box UI Elements
21 lines (18 loc) • 1.09 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 IconFileGoogleSheets = function IconFileGoogleSheets(props) {
return React.createElement(IconFileBase, _extends({}, props, {
baseClassName: "icon-file-google-sheets"
}), React.createElement("path", {
d: "M25 27H7V5h13l5 5z",
fill: "#fff"
}), React.createElement("path", {
d: "M20 4H7a.94.94 0 0 0-1 1v22a.94.94 0 0 0 1 1h18a.94.94 0 0 0 1-1V9.9zm5 23H7V5h13v4a.94.94 0 0 0 1 1h4z",
fill: "#21a464"
}), React.createElement("path", {
d: "M20 13h-9a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h9a1 1 0 0 0 1-1v-8a1 1 0 0 0-1-1zm-5 9h-4v-2h4zm0-3h-4v-2h4zm0-3h-4v-2h4zm5 6h-4v-2h4zm0-3h-4v-2h4zm0-3h-4v-2h4z",
fill: "#21a464"
}));
};
export default IconFileGoogleSheets;