UNPKG

@datalayer/icons-react

Version:

React.js and JupyterLab icons for data products.

49 lines (47 loc) 2.52 kB
const React = require("react"); const sizeMap = { "small": 16, "medium": 32, "large": 64 }; function TornadoIcon({ 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("g", { fill: "none", stroke: "#d0cfce", strokeLinecap: "round", strokeLinejoin: "round", strokeMiterlimit: 10 }, /*#__PURE__*/React.createElement("path", { strokeWidth: 4, d: "M36 15.543c-17.673 0-32-1.588-32-3.547M4 12.007c0-1.96 14.327-3.547 32-3.547s32 1.588 32 3.547v-.01" }), /*#__PURE__*/React.createElement("path", { strokeWidth: 2, d: "M66 17.023c0 1.837-13.431 3.326-30 3.326s-30-1.49-30-3.326M64 22.399c0 1.714-12.536 3.103-28 3.103S8 24.112 8 22.4M62 27.502c0 1.592-11.64 2.882-26 2.882s-26-1.29-26-2.882M58 33.364c0 1.347-9.85 2.439-22 2.439s-22-1.092-22-2.439M54 38.803c0 1.102-8.059 1.995-18 1.995s-18-.893-18-1.995M50 43.798c0 .857-6.268 1.552-14 1.552s-14-.695-14-1.552M46 48.86c0 .612-4.477 1.109-10 1.109s-10-.497-10-1.109M44 53.468c0 .49-3.582.887-8 .887s-8-.397-8-.886M40 58.355c0 .245-1.79.444-4 .444s-4-.199-4-.444M38 62.799c0 .122-.895.221-2 .221s-2-.099-2-.221" })), /*#__PURE__*/React.createElement("g", { fill: "none", stroke: "#000", strokeLinecap: "round", strokeLinejoin: "round", strokeMiterlimit: 10, strokeWidth: 2 }, /*#__PURE__*/React.createElement("path", { d: "M36 15.543c-17.673 0-32-1.588-32-3.547M4 12.007c0-1.96 14.327-3.547 32-3.547s32 1.588 32 3.547v-.01M66 18.063c0 1.837-13.431 3.326-30 3.326s-30-1.49-30-3.326M64 23.389c0 1.714-12.536 3.103-28 3.103S8 25.102 8 23.39M62 28.492c0 1.592-11.64 2.882-26 2.882s-26-1.29-26-2.882M58 34.374c0 1.347-9.85 2.439-22 2.439s-22-1.092-22-2.439M54 39.813c0 1.102-8.059 1.995-18 1.995s-18-.893-18-1.995M50 44.808c0 .857-6.268 1.552-14 1.552s-14-.695-14-1.552M46 49.86c0 .612-4.477 1.109-10 1.109s-10-.497-10-1.109M44 54.468c0 .49-3.582.887-8 .887s-8-.397-8-.886M40 59.355c0 .245-1.79.444-4 .444s-4-.199-4-.444M38 63.799c0 .122-.895.221-2 .221s-2-.099-2-.221" }))); } const ForwardRef = React.forwardRef(TornadoIcon); module.exports = ForwardRef;