metadata-based-explorer1
Version:
Box UI Elements
21 lines (18 loc) • 1.01 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 IconFilePresentation = function IconFilePresentation(props) {
return React.createElement(IconFileBase, _extends({}, props, {
baseClassName: "icon-file-presentation"
}), 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: "#f7931d"
}), React.createElement("path", {
d: "M10.35 22.41l-.7-.71 4.88-4.86 2.49 2.47 4.63-4.61.7.71-5.33 5.32-2.49-2.48-4.18 4.16z",
fill: "#f7931d"
}));
};
export default IconFilePresentation;