UNPKG

@datalayer/icons-react

Version:

React.js and JupyterLab icons for data products.

43 lines (41 loc) 2.79 kB
import * as React from "react"; const sizeMap = { "small": 16, "medium": 32, "large": 64 }; function FireIcon({ 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: "#FCEA2B", d: "M51.334 58.302c7.563-9.79 4.032-21.872 2.446-25.569-.18-.42-.93-.557-.981-.1-.123 1.08-.407 2.36-2.005 1.973-.82-.199-1.347-.556-1.347-1.88.51-15.05-10.511-25.297-14.347-28.536-.51-.43-1.267.03-1.159.704 2.456 15.335-1.607 14.285-3.098 13.82a.557.557 0 00-.66.307c-4.589 9.701-3.412 14.265-3.52 17.445v.958c0 1.746-1.415 2.583-2.56 2.072-2.055-.917-2.405-6.373-2.414-7.824-.004-.683-.809-.879-1.202-.332-8.804 12.267-2.325 23.198-.082 26.317.646.899.903 2.075.536 3.13-.042.118-.09.235-.147.35-.399.797.67 1.4.67 1.4 1.316 1.233 5.466 5.18 14.283 5.18 7.134 0 11.947-3.06 13.83-4.725.882-.781 1.275-.86 1.273-1.683-.004-.985-.026-2.502.484-3.007" }), /*#__PURE__*/React.createElement("path", { fill: "#F1B31C", d: "M36.294 32.558c-.295 1.46-1.32 4.002-4.207 8.35l-.177.317c-.309.689-1.355 3.341-1.062 7.051 0 .002-.573 4.337-2.977 3.976a2.982 2.982 0 01-1.254-.477c-.61-.416-1.423.108-1.349.852.32 3.192 1.604 8.082 6.153 11.672 0 0 1.283 1.06 1.442 1.975.005.03.029.05.059.05h5.274c.183 0 .208-.023.213-.059.036-.24.365-1.25 3.203-3.773 1.996-1.775 3.165-3.898 3.742-5.348.205-.515-.1-1.117-.639-1.207-.344-.057-.713-.36-1.013-1.184v-.002c-.007-.023-.218-.838.6-2.56.381-.8.425-1.664.36-2.365a.884.884 0 00-1.281-.716c-.784.397-1.87.53-2.6-1.075 0 0-.658-1.566-.085-5.451.437-2.966-1.01-7.862-2.828-10.375-.449-.62-1.422-.406-1.574.349z" }), /*#__PURE__*/React.createElement("g", { fill: "none", stroke: "#000", strokeLinecap: "round", strokeLinejoin: "round", strokeMiterlimit: 10, strokeWidth: 2 }, /*#__PURE__*/React.createElement("path", { d: "M21.63 61.556c3.479 3.611 8.67 5.476 13.992 5.476 5.055 0 10.708-1.963 14.241-5.468M21.51 57.456s-10.531-11.201-.454-25.98c0 0 .197 4.06 1.255 6.582.484 1.036 1.212 1.957 2.349 1.957 1.335 0 2.418-.897 2.418-2.57v-.92c.105-3.099-.525-7.665 3.57-17.19 0 0 7.037 3.784 3.992-14.611 0 0 14.88 10.442 14.276 28.217 0 1.269.968 2.298 2.162 2.298s2.161-1.029 2.161-2.298c.075.134 6.322 13.078-2.514 24.515M22.82 22.973a5.694 5.694 0 011.923-3.319s1.902-1.635 1.595-3.83" }))); } const ForwardRef = React.forwardRef(FireIcon); export default ForwardRef;