@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
60 lines (58 loc) • 2.94 kB
JavaScript
const React = require("react");
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function BooksVerticalIcon({
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: "#fff",
d: "M61.217 21.641L37.91 15.04a1.007 1.007 0 00-.554.002l-22.594 6.626a.948.948 0 00-.137.072 5.383 5.383 0 00-1.834 9.543 5.364 5.364 0 00.066 8.697 5.378 5.378 0 001.486 9.502l23.014 6.713a1.003 1.003 0 00.555.002l23.306-6.652a1 1 0 00.725-.961v-25.98a1 1 0 00-.727-.962z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#92d3f5",
d: "M37.638 15.976l23.306 6.603-23.306 6.652-22.594-6.628 22.594-6.627z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#61b2e4",
d: "M15.082 24.727l21.994 6.447a2 2 0 001.11.004l23.296-6.765a.613.613 0 00.442-.58l.019-1.25-24.305 6.672-22.558-6.613a4.4 4.4 0 00-.455 8.482l23.014 6.713 24.211-6.91.04-1.243a.625.625 0 00-.797-.621l-23.449 6.692-22.422-6.54a2.4 2.4 0 01-.14-4.487"
}), /*#__PURE__*/React.createElement("path", {
fill: "#d22f27",
d: "M15.082 33.41l21.994 6.446a1.999 1.999 0 001.11.004l23.296-6.766a.613.613 0 00.442-.579l.019-1.25-24.305 6.672-22.558-6.613a4.4 4.4 0 00-.455 8.482l23.014 6.713 24.211-6.91.04-1.243a.625.625 0 00-.797-.621l-23.449 6.692-22.422-6.54a2.4 2.4 0 01-.14-4.487"
}), /*#__PURE__*/React.createElement("path", {
fill: "#5c9e31",
d: "M15.082 42.155L37.076 48.6a2 2 0 001.11.004l23.296-6.765a.613.613 0 00.442-.58l.019-1.25-24.305 6.672L15.08 40.07a4.4 4.4 0 00-.455 8.481l23.014 6.713 24.211-6.91.04-1.242a.625.625 0 00-.797-.622l-23.449 6.693-22.422-6.54a2.4 2.4 0 01-.14-4.488"
}), /*#__PURE__*/React.createElement("path", {
fill: "#61b2e4",
d: "M44.32 17.794l-5.726-1.622L16 22.799l5.81 1.705 22.51-6.71z"
}), /*#__PURE__*/React.createElement("g", {
fill: "none",
stroke: "#000",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 2
}, /*#__PURE__*/React.createElement("path", {
d: "M37.638 16l23.306 6.603-23.306 6.652-22.594-6.628L37.638 16z"
}), /*#__PURE__*/React.createElement("path", {
d: "M15.08 22.642a4.4 4.4 0 00-.455 8.482l23.014 6.713 23.305-6.652"
}), /*#__PURE__*/React.createElement("path", {
d: "M15.08 31.294a4.4 4.4 0 00-.455 8.481l23.014 6.714 23.305-6.652"
}), /*#__PURE__*/React.createElement("path", {
d: "M15.08 40.04a4.4 4.4 0 00-.455 8.481l23.014 6.713 23.305-6.651"
})));
}
const ForwardRef = React.forwardRef(BooksVerticalIcon);
module.exports = ForwardRef;