UNPKG

@datalayer/icons-react

Version:

React.js and JupyterLab icons for data products.

38 lines (36 loc) 2.6 kB
import * as React from "react"; const sizeMap = { "small": 16, "medium": 32, "large": 64 }; function UnipileIcon({ title, titleId, size, colored, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 150 150", 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 ? '#44B8B8' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#44B8B8') ? 'white' : 'currentColor'), d: "M49 104.994c-1.085 1.45-2.067 2.583-3.13 3.632-4.795 4.724-8.652 4.9-12.953-.332-7.474-9.089-14.624-18.453-21.672-27.879-2.278-3.045-1.8-6.577.52-9.621 6.636-8.708 13.288-17.405 20.02-26.039 4.838-6.203 9.509-6.63 14.687-.634 7.381 8.547 14.279 17.515 21.304 26.365 4.903 6.177.231 10.715-3.11 15.107C59.703 92.121 54.29 98.307 49 104.994z" }), /*#__PURE__*/React.createElement("path", { fill: colored ? '#42AF71' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#42AF71') ? 'white' : 'currentColor'), d: "M98.239 62.732c3.363 4.695 8.87 7.9 7.728 14.523-.273 1.58-.54 3.399-1.473 4.587-6.886 8.773-13.83 17.505-20.978 26.065-4.666 5.59-8.594 5.6-13.693.37-2.177-2.232-4.33-4.57-6.003-7.175-.69-1.073-.697-3.409.028-4.428 3.976-5.594 8.203-11.016 12.495-16.377 2.317-2.893 2.451-5.533.119-8.435-3.59-4.465-6.9-9.169-10.677-13.465-2.961-3.369-4.566-6.161-.173-9.632 1.888-1.492 3.049-3.869 4.783-5.6 4.42-4.408 8.18-4.572 12.247.108 5.37 6.178 10.253 12.78 15.597 19.459z" }), /*#__PURE__*/React.createElement("path", { fill: colored ? '#DCDE4B' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#DCDE4B') ? 'white' : 'currentColor'), d: "M116.857 41.982c7.43 8.99 14.27 18.093 21.594 26.787 5.718 6.789 4.423 9.087-.974 16.145-5.846 7.646-12.223 14.884-18.241 22.4-3.284 4.102-6.988 6.586-11.667 2.598-3.12-2.66-5.728-6-8.138-9.345-.466-.646.782-2.932 1.699-4.101 4.328-5.521 8.856-10.885 13.228-16.372 2.217-2.783 2.15-5.598-.184-8.413a1081.664 1081.664 0 01-13.268-16.342c-.787-.987-1.669-2.213-1.754-3.383-.217-2.98 9.378-12.195 12.41-11.872 1.684.18 3.28 1.195 5.295 1.898z" })); } const ForwardRef = React.forwardRef(UnipileIcon); export default ForwardRef;