UNPKG

@datalayer/icons-react

Version:

React.js and JupyterLab icons for data products.

36 lines (34 loc) 1.53 kB
const React = require("react"); const sizeMap = { "small": 16, "medium": 32, "large": 64 }; function CloudDatabaseIcon({ title, titleId, size, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", 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", { d: "M20 13h-8a2.002 2.002 0 00-2 2v13a2.002 2.002 0 002 2h8a2.002 2.002 0 002-2V15a2.002 2.002 0 00-2-2zm0 2v3h-8v-3zm0 5v3h-8v-3zm-8 8v-3h8v3z" }), /*#__PURE__*/React.createElement("path", { d: "M25.91 10.13a.121.121 0 01-.097-.095 10.006 10.006 0 00-7.923-7.853 10.002 10.002 0 00-11.704 7.853.121.121 0 01-.097.095A7.502 7.502 0 007.491 25H8v-2h-.505a5.51 5.51 0 01-5.438-6.3 5.7 5.7 0 014.713-4.66l1.017-.184a.13.13 0 00.105-.104l.18-.935a8.28 8.28 0 016.847-6.743 7.957 7.957 0 012.847.125 8.22 8.22 0 016.147 6.545l.194 1.008a.13.13 0 00.105.104l1.057.191a5.782 5.782 0 013.101 1.54A5.505 5.505 0 0124.508 23H24v2h.508a7.502 7.502 0 001.402-14.87z" }), /*#__PURE__*/React.createElement("path", { fill: "none", d: "M0 0h32v32H0z", "data-name": "<Transparent Rectangle>" })); } const ForwardRef = React.forwardRef(CloudDatabaseIcon); module.exports = ForwardRef;