UNPKG

@datalayer/icons-react

Version:

React.js and JupyterLab icons for data products.

39 lines (37 loc) 1.67 kB
const React = require("react"); const sizeMap = { "small": 16, "medium": 32, "large": 64 }; function CloudGreyIcon({ 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: "#D0CFCE", d: "M15.934 30.255a.908.908 0 01-.806.813C9.968 31.621 6 36.701 6 42.885c0 6.553 4.545 11.865 10.15 11.865h38.698C61.008 54.75 66 49.136 66 42.211c0-6.636-4.585-12.069-10.388-12.51a.966.966 0 01-.889-.779c-1.296-6.657-7.276-11.659-14.346-11.659-4.595 0-8.688 2.08-11.346 5.39-.26.323-.696.47-1.08.31-1.022-.429-2.102-.636-3.311-.636-4.567 0-8.316 3.485-8.706 7.928z" }), /*#__PURE__*/React.createElement("path", { fill: "none", stroke: "#000", strokeLinecap: "round", strokeLinejoin: "round", strokeMiterlimit: 10, strokeWidth: 2, d: "M15.934 30.255a.905.905 0 01-.802.813C9.97 31.618 6 36.7 6 42.885c0 6.553 4.545 11.865 10.15 11.865h38.698C61.008 54.75 66 49.136 66 42.211c0-6.638-4.587-12.07-10.392-12.51a.964.964 0 01-.885-.78c-1.296-6.656-7.276-11.658-14.346-11.658-4.597 0-8.691 2.082-11.349 5.393-.258.322-.69.47-1.07.31-1.025-.431-2.107-.64-3.318-.64-4.567 0-8.316 3.486-8.706 7.93z" })); } const ForwardRef = React.forwardRef(CloudGreyIcon); module.exports = ForwardRef;