@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
95 lines (93 loc) • 4.04 kB
JavaScript
const React = require("react");
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function AppleRainbowIcon({
title,
titleId,
size,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
overflow: "visible",
viewBox: "0 0 550 550",
fill: "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("path", {
fill: "#61bb46",
fillRule: "evenodd",
stroke: "#61bb46",
strokeMiterlimit: 2.613,
strokeWidth: 2.985,
d: "M25.824 200.612c.166-.273.342-.542.518-.806 28.447-43.799 73.32-69.434 115.518-69.434 42.969 0 69.98 23.555 105.498 23.555 34.463 0 55.454-23.589 105.132-23.589 37.534 0 77.329 20.439 105.674 55.781-7.837 4.292-14.907 9.165-21.226 14.521z",
clipRule: "evenodd",
transform: "matrix(.98693 0 0 .99106 27.5 .907)"
}), /*#__PURE__*/React.createElement("path", {
fill: "#61bb46",
fillRule: "evenodd",
stroke: "#61bb46",
strokeMiterlimit: 2.613,
strokeWidth: 2.985,
d: "M314.808 90.875c18.032-23.159 31.748-55.859 26.777-89.292-29.482 2.021-63.965 20.791-84.106 45.225-18.276 22.197-33.364 55.117-27.49 87.095 32.187 1.001 65.483-18.218 84.819-43.028z",
clipRule: "evenodd",
transform: "matrix(.98693 0 0 .99106 27.5 .907)"
}), /*#__PURE__*/React.createElement("path", {
fill: "#fdb827",
fillRule: "evenodd",
d: "M51.539 199.086c-12.09 19.021-20.456 46.284-22.676 70.197l392.241-.01c4.241-26.161 18.343-51.156 40.694-70.158l-410.26-.029h.024z",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
fill: "#f5821f",
fillRule: "evenodd",
stroke: "#f5821f",
strokeMiterlimit: 2.613,
strokeWidth: 2.985,
d: "M4.989 340.998c-3.862-24.644-4.487-48.403-2.061-70.2l394.341-.01c-3.857 23.638-.62 48.237 9.136 70.225z",
clipRule: "evenodd",
transform: "matrix(.98693 0 0 .99106 27.5 .907)"
}), /*#__PURE__*/React.createElement("path", {
fill: "#e03a3e",
fillRule: "evenodd",
stroke: "#e03a3e",
strokeMiterlimit: 2.613,
strokeWidth: 2.985,
d: "M24.261 411.193c-9.312-23.584-15.688-47.271-19.272-70.195l401.416.015c12.427 28.018 35.425 51.821 67.808 64.053-.962 2.139-1.89 4.185-2.783 6.157z",
clipRule: "evenodd",
transform: "matrix(.98693 0 0 .99106 27.5 .907)"
}), /*#__PURE__*/React.createElement("path", {
fill: "#963d97",
fillRule: "evenodd",
stroke: "#963d97",
strokeMiterlimit: 2.613,
strokeWidth: 2.985,
d: "M471.429 411.222c-11.118 24.443-17.563 37.129-32.949 60.547a605.045 605.045 0 01-6.436 9.609l-370.527.034a850.124 850.124 0 01-3.521-5.288c-13.853-21.099-25.068-42.974-33.735-64.932z",
clipRule: "evenodd",
transform: "matrix(.98693 0 0 .99106 27.5 .907)"
}), /*#__PURE__*/React.createElement("path", {
fill: "none",
stroke: "#000",
strokeMiterlimit: 2.613,
strokeWidth: 3.895,
d: "M472.972 550.778c13.589 0 24.604-11.016 24.604-24.595 0-13.59-11.016-24.6-24.604-24.6s-24.604 11.01-24.604 24.6c0 13.579 11.015 24.595 24.604 24.595m-6.992-9.648v-27.485h11.011m6.645 27.182l-6.553-13.892m-11.054-.244h11.006m-.01-.034c2.734 0 5.503-2.891 5.503-6.46 0-3.8-2.886-6.553-5.537-6.553",
transform: "matrix(.98693 0 0 .99106 27.5 .907)"
}), /*#__PURE__*/React.createElement("path", {
fill: "#009ddc",
fillRule: "evenodd",
stroke: "#009ddc",
strokeMiterlimit: 2.613,
strokeWidth: 2.985,
d: "M432.044 481.378c-22.666 33.203-53.096 69.741-90.02 70.088-36.03.327-45.273-23.447-94.155-23.179-48.882.273-59.087 23.594-95.117 23.257-38.521-.356-68.433-36.24-91.235-70.132z",
clipRule: "evenodd",
transform: "matrix(.98693 0 0 .99106 27.5 .907)"
}));
}
const ForwardRef = React.forwardRef(AppleRainbowIcon);
module.exports = ForwardRef;