UNPKG

@datalayer/icons-react

Version:

React.js and JupyterLab icons for data products.

35 lines (33 loc) 2.57 kB
import * as React from "react"; const sizeMap = { "small": 16, "medium": 32, "large": 64 }; function ConsulIcon({ title, titleId, size, colored, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "64.74 19 64 64", fill: colored ? 'currentColor' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('currentColor') ? 'white' : '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: colored ? '#961d59' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#961d59') ? 'white' : 'currentColor'), d: "M95.84 57.577c-3.656.004-6.625-2.95-6.635-6.602s2.942-6.623 6.6-6.64 6.634 2.93 6.656 6.58a6.56 6.56 0 01-1.92 4.7 6.62 6.62 0 01-4.7 1.95" }), /*#__PURE__*/React.createElement("path", { fill: colored ? '#d62783' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#d62783') ? 'white' : 'currentColor'), d: "M108.738 53.977c-1.687 0-3.056-1.367-3.056-3.053s1.368-3.053 3.056-3.053 3.056 1.367 3.056 3.053a3.04 3.04 0 01-.893 2.161 3.05 3.05 0 01-2.163.892m11.183 2.878a2.93 2.93 0 01-3.61 1.939 2.93 2.93 0 01-2.016-3.565 2.93 2.93 0 013.524-2.09 2.934 2.934 0 012.165 3.477c0 .08 0 .15-.063.238m-2.16-7.865c-1.206.3-2.475-.155-3.2-1.155s-.795-2.345-.15-3.405 1.87-1.625 3.1-1.43a3.06 3.06 0 012.5 2.322 3.17 3.17 0 010 1.197A2.943 2.943 0 01117.709 49m10.937 7.524c-.292 1.66-1.876 2.77-3.538 2.478a3.054 3.054 0 111.053-6.015 3.07 3.07 0 012.58 3.259.8.8 0 00-.063.27m-2.524-7.658a3.05 3.05 0 01-3.505-2.506 3.042 3.042 0 012.507-3.5 3.05 3.05 0 013.507 2.502 3.31 3.31 0 010 .793 3.03 3.03 0 01-2.508 2.712m-2.127 18.236a3.1 3.1 0 01-3.913 1.342 3.093 3.093 0 01-1.754-3.746 3.1 3.1 0 016.048 1.162 2.753 2.753 0 01-.38 1.253m-1.103-28.052a3.063 3.063 0 01-4.172-1.166 3.06 3.06 0 011.167-4.167 3.072 3.072 0 014.172 1.163c.315.534.45 1.154.38 1.768a3.06 3.06 0 01-1.54 2.379M95.96 81.688a30.735 30.735 0 01-27.02-15.2 30.66 30.66 0 010-30.978 30.737 30.737 0 0127.02-15.2 30.45 30.45 0 0118.652 6.343l-3.754 4.892c-7.413-5.67-17.405-6.644-25.776-2.515S71.4 41.678 71.4 51.004s5.304 17.844 13.673 21.98a24.59 24.59 0 0025.783-2.49l3.746 4.9a30.47 30.47 0 01-18.652 6.295z" })); } const ForwardRef = React.forwardRef(ConsulIcon); export default ForwardRef;