@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
35 lines (33 loc) • 1.92 kB
JavaScript
import * as React from "react";
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function AzureCloudIcon({
title,
titleId,
size,
colored,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 152 152",
fill: colored ? 'currentColor' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('currentColor') ? 'white' : 'currentColor'),
"aria-hidden": "true",
width: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("g", {
fill: "#0078d7"
}, /*#__PURE__*/React.createElement("path", {
d: "M90.565 77.217c-3.933 0-7.277 2.36-8.85 5.704H25.464c-9.441 0-17.308-7.67-17.308-17.308s7.67-17.308 17.308-17.308h7.867c.393-1.967.983-3.934 1.77-5.704.393-.59.59-1.377.984-1.967 3.933-6.884 11.407-11.407 19.864-11.407 7.67 0 14.358 3.737 18.488 9.244 2.36-1.18 4.917-1.967 7.474-2.557-5.507-8.654-14.948-14.358-25.962-14.358-12.784 0-23.798 7.867-28.322 19.078v0h-2.163C11.696 40.831.485 52.042.485 65.81c0 13.767 11.211 24.978 24.979 24.978H81.91c1.574 3.344 4.917 5.704 8.85 5.704 5.311 0 9.638-4.327 9.638-9.638-.196-5.31-4.523-9.637-9.834-9.637z"
}), /*#__PURE__*/React.createElement("path", {
d: "M120.46 120.094c16.915 0 31.47-14.358 31.47-31.273 0-16.914-13.571-30.485-30.486-30.682-5.704-11.408-17.308-19.078-30.879-19.078-16.521 0-30.289 11.604-33.632 26.945-8.064.787-14.948 5.114-19.275 11.211h41.106c2.754-3.54 7.08-5.704 11.998-5.704 8.457 0 15.341 6.884 15.341 15.341 0 8.458-6.884 15.342-15.341 15.342-4.917 0-9.047-2.164-11.998-5.704H32.938c1.77 12.98 12.194 23.602 25.765 23.602z"
})));
}
const ForwardRef = React.forwardRef(AzureCloudIcon);
export default ForwardRef;