@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
48 lines (46 loc) • 2.09 kB
JavaScript
const React = require("react");
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function BriefcaseIcon({
title,
titleId,
size,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 72 72",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
width: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fill: "#FCEA2B",
d: "M41.596 36.354l-8.54-.037h-1.993v2.958l.009 3.093 7.705.034h2.82z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#6A462F",
d: "M31.531 42.145l-.364-3.178-13.2-.454c-1.91 0-6.463-.195-6.86-1.987l.43 5.876h.02c.119-.42.488.575.947.575.458 0 .828-.995.946-.575H30.22c-.023-.084 1.312-.166 1.312-.257zM56.874 38.664H41.95v3.481c0 .091.512.173.49.257h16.05c.124-.41.49.784.942.784s.818-1.194.942-.784h.012l.44-6.27c-.235 1.983-3.213 1.963-3.953 2.532zM60.874 35.279v.178l.012-.178z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#A57939",
d: "M12.008 36.813s-.221 1.91 3.76 1.851c2.983-.043 14.852 0 14.852 0l1.024-1.898 9.399-.08 1.397 1.697s11.97.51 14.434.281c3.239-.302 3-3.89 3-4V19.921H12.008v16.892zM42.492 41.653H12.533v.02c.539.017-.525 1.317-.525 1.859l.496 15.318h46.929V42.688c0-.494-.637-.885-.168-.967l.002-.068H42.492z"
}), /*#__PURE__*/React.createElement("g", {
fill: "none",
stroke: "#000",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: 10,
strokeWidth: 2
}, /*#__PURE__*/React.createElement("path", {
d: "M31.456 15.89v-3.838H41.78v3.839M59.433 42.688V58.85h-46.93V42.668M41.951 38.664h14.923a3 3 0 003-3V19.921H12.008v15.743a3 3 0 003 3H30.62"
}), /*#__PURE__*/React.createElement("path", {
d: "M31.167 36.317h10.325v5.828H31.167z"
})));
}
const ForwardRef = React.forwardRef(BriefcaseIcon);
module.exports = ForwardRef;