@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
45 lines (43 loc) • 1.99 kB
JavaScript
const React = require("react");
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function FolderOpenIcon({
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: "#9B9B9A",
d: "M15.464 59.626c.14-.169 2.356-7.826 2.9-9.627.457-1.513 3.962-15.27 6.16-25.07.008-.132 33.484-.614 33.484-.614v-4.01c0 .551-1-3.357-1-3.357l-27.493-.571c-.08-1.236-1.004-4.122-2.137-4.122l-12.587-.198c-1.103 0-2.832 1.34-2.832 2.444 0 0 .553 39.725 0 39.725s-1 2.327-1 1.774c0 0 .354 3.595 1.375 4.566.015.014.03.021.046.034-.133-.156 2.925-.781 3.084-.974z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#D0CFCE",
d: "M23.944 24.315c0 .078-.008.156-.025.232-.275 1.226-6.735 30.042-7.363 32.124a9.835 9.835 0 01-1.765 3.291l43.111.01c1.139 0 1.522 0 2.153-2.39.667-2.53 6.698-30.269 7.342-33.232l.006-.035H23.944z"
}), /*#__PURE__*/React.createElement("g", {
fill: "none",
stroke: "#000",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: 10,
strokeWidth: 2
}, /*#__PURE__*/React.createElement("path", {
d: "M57.008 20.304v-3.356l-27.338-.002a.364.364 0 01-.36-.369l-.068-1.517c-.116-1.787-1.34-3.003-2.996-3.003H14.959a3 3 0 00-3 3V56"
}), /*#__PURE__*/React.createElement("path", {
d: "M17.027 55.568c-.59 1.954-2.222 4.139-3.896 4.394l43.915.01c1.657 0 2.323-.438 3-3 .677-2.56 7-31.657 7-31.657a1 1 0 00-1-1H24.965a1 1 0 00-1 1s-6.348 28.299-6.938 30.253z"
})));
}
const ForwardRef = React.forwardRef(FolderOpenIcon);
module.exports = ForwardRef;