UNPKG

@datalayer/icons-react

Version:

React.js and JupyterLab icons for data products.

45 lines (43 loc) 2.2 kB
import * as React from "react"; const sizeMap = { "small": 16, "medium": 32, "large": 64 }; function TreeDeciduousIcon({ 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: "#b1cc33", d: "M51.56 17.73c-.509.003-1.018.034-1.524.091l-.673.072-.317-.6c-2.673-5.047-8.5-8.308-14.854-8.308-9.026 0-16.369 6.4-16.369 14.268.002.517.035 1.032.1 1.544l.1.824-.792.251c-4.015 1.272-6.608 4.186-6.608 7.421 0 4.445 4.851 8.061 10.813 8.061 2.305.023 4.575-.559 6.584-1.688l.591-.34.19.15.343.275c2.714 2.167 7.082 3.462 11.683 3.462 7.763 0 14.32-3.69 14.32-8.06a4.411 4.411 0 00-.077-.806l-.139-.75-.021-.118.842-.266c4.021-1.27 6.621-4.185 6.621-7.425.002-4.439-4.85-8.058-10.813-8.058z" }), /*#__PURE__*/React.createElement("path", { fill: "#5c9e31", d: "M39.468 27.997s4.917 7.331 15.443 5.488l.891 3.572-4 4.922-9.214 2.032-12.13-2.555-1.846-2.126A17.56 17.56 0 0039.47 27.997z" }), /*#__PURE__*/React.createElement("g", { fill: "none", stroke: "#000", strokeLinecap: "round", strokeWidth: 2 }, /*#__PURE__*/React.createElement("path", { strokeLinejoin: "round", d: "M35.79 63.943V52.776l-7.631-7.516M35.789 52.776l4.368-4.546" }), /*#__PURE__*/React.createElement("path", { strokeMiterlimit: 10, d: "M63.374 25.773c0-5-5.289-9.06-11.813-9.06a15.38 15.38 0 00-1.63.1c-2.764-5.217-8.763-8.84-15.739-8.84-9.593 0-17.369 6.836-17.369 15.268.002.558.038 1.114.108 1.667-4.288 1.36-7.306 4.595-7.306 8.374 0 5 5.29 9.061 11.813 9.061 2.48.021 4.922-.607 7.084-1.822 2.791 2.23 7.257 3.681 12.307 3.681 8.461 0 15.32-4.057 15.32-9.06a5.464 5.464 0 00-.094-.987c4.294-1.36 7.32-4.598 7.32-8.382z" }))); } const ForwardRef = React.forwardRef(TreeDeciduousIcon); export default ForwardRef;