UNPKG

@datalayer/icons-react

Version:

React.js and JupyterLab icons for data products.

35 lines (33 loc) 2.32 kB
const React = require("react"); const sizeMap = { "small": 16, "medium": 32, "large": 64 }; function JupyterMystIcon({ title, titleId, size, colored, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", fill: colored ? 'none' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('none') ? 'white' : 'currentColor'), viewBox: "0 0 21 21", "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: colored ? '#F37726' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#F37726') ? 'white' : 'currentColor'), d: "M10.178 17.933c-4.066 0-7.64-1.46-9.488-3.614a10.116 10.116 0 0018.976 0c-1.843 2.155-5.404 3.614-9.488 3.614zM10.178 3.919c4.066 0 7.64 1.46 9.488 3.614a10.117 10.117 0 00-18.976 0c1.848-2.16 5.403-3.614 9.488-3.614z" }), /*#__PURE__*/React.createElement("path", { fill: colored ? '#F37726' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#F37726') ? 'white' : 'currentColor'), d: "M6.442 15.932c-.585-.193-1-.482-1.256-.892a2.92 2.92 0 01-.362-1.484v-1.05c0-.386-.074-.675-.234-.892-.16-.218-.383-.314-.702-.314v-.748c.32 0 .553-.109.702-.314.15-.205.234-.506.234-.892v-1.05c-.01-.53.117-1.05.373-1.484.245-.41.66-.7 1.245-.893l.181.604a1.2 1.2 0 00-.702.639c-.15.35-.224.748-.213 1.134v1.05c.01.325-.064.651-.192.94-.127.266-.32.495-.564.628.245.145.447.362.575.64.128.289.191.614.191.94v1.05c-.01.386.064.784.213 1.134.15.313.394.543.703.64l-.192.614zM13.956 15.848l-.18-.591c.297-.097.542-.326.68-.627.15-.35.224-.724.213-1.11v-1.026c-.01-.325.064-.651.202-.94.139-.278.352-.495.618-.616a1.315 1.315 0 01-.618-.603 2.203 2.203 0 01-.202-.953V8.344a2.689 2.689 0 00-.213-1.122 1.145 1.145 0 00-.68-.627l.18-.591c.564.18.98.47 1.224.868.255.435.383.941.362 1.46V9.37c0 .374.074.675.223.88.15.205.384.314.703.314v.736c-.32 0-.554.108-.703.314-.149.205-.223.506-.223.88v1.026a2.86 2.86 0 01-.362 1.46c-.245.386-.66.675-1.224.868z" })); } const ForwardRef = React.forwardRef(JupyterMystIcon); module.exports = ForwardRef;