UNPKG

@datalayer/icons-react

Version:

React.js and JupyterLab icons for data products.

47 lines (45 loc) 3.4 kB
const React = require("react"); const sizeMap = { "small": 16, "medium": 32, "large": 64 }; function IcypeasIcon({ title, titleId, size, colored, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 225 225", 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 ? '#D1FAE5' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#D1FAE5') ? 'white' : 'currentColor'), d: "M226 22c0 60.02 0 120.042-.254 180.797-2.73 12.935-11.802 21.247-24.194 22.229-59.171-.004-117.873.004-176.971-.001-12.746-1.881-21.57-11.01-22.607-23.473.006-59.504 0-118.538.013-177.958C4.205 11.27 12.073 4.69 23 1c60.02 0 120.042 0 180.79.252 3.784 1.466 6.974 2.425 9.87 3.945C220.445 8.757 223.222 15.413 226 22M125.047 143.778c1.93-.969 3.932-1.815 5.776-2.926 13.31-8.024 18.872-24.973 13.064-39.646-5.773-14.586-21.71-23.12-36.808-19.713-18.463 4.167-29.564 22.17-24.776 40.18 4.809 18.086 23.244 27.897 42.744 22.105z" }), /*#__PURE__*/React.createElement("path", { fill: colored ? '#EDFDF5' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#EDFDF5') ? 'white' : 'currentColor'), d: "M1.967 23.98c.006 59.034.013 118.068-.233 177.566C1.482 202.008 1 202 1 202c0-59.02 0-118.042.242-177.535a.892.892 0 01.725-.485zM24.977 225.039c58.702-.009 117.404-.017 176.567.227.462.252.456.734.456.734-58.688 0-117.375 0-176.535-.24-.472-.24-.488-.721-.488-.721z" }), /*#__PURE__*/React.createElement("path", { fill: colored ? '#FEFFFF' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#FEFFFF') ? 'white' : 'currentColor'), d: "M24.58 225.025c.397.014.413.494.417.735C17.074 226 9.147 226 1 226v-23.531c0-.469.482-.46.722-.454 1.289 12 10.113 21.129 22.859 23.01z" }), /*#__PURE__*/React.createElement("path", { fill: colored ? '#FEFFFE' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#FEFFFE') ? 'white' : 'currentColor'), d: "M202.469 226c-.469 0-.463-.482-.455-.722 11.93-1.234 21.001-9.546 23.732-22.012.254 7.329.254 14.923.254 22.734h-23.531zM1.987 23.594c-.02.386-.503.399-.745.403C1 16.409 1 8.817 1 1h21.531C12.073 4.689 4.205 11.269 1.987 23.594z" }), /*#__PURE__*/React.createElement("path", { fill: colored ? '#FEFFFF' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#FEFFFF') ? 'white' : 'currentColor'), d: "M226 21.531c-2.778-6.118-5.555-12.773-12.34-16.334-2.896-1.52-6.086-2.479-9.401-3.945C211.258 1 218.516 1 226 1v20.531z" }), /*#__PURE__*/React.createElement("path", { fill: colored ? '#34D399' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#34D399') ? 'white' : 'currentColor'), d: "M124.67 143.899c-19.123 5.67-37.558-4.14-42.367-22.225-4.788-18.01 6.313-36.014 24.776-40.181 15.098-3.408 31.035 5.127 36.808 19.713 5.808 14.673.247 31.622-13.064 39.646-1.844 1.111-3.847 1.957-6.154 3.047z" })); } const ForwardRef = React.forwardRef(IcypeasIcon); module.exports = ForwardRef;