@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
51 lines (49 loc) • 2.69 kB
JavaScript
const React = require("react");
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function FingersHornIcon({
title,
titleId,
size,
colored,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 72 72",
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("g", {
fill: "#fcea2b"
}, /*#__PURE__*/React.createElement("path", {
d: "M33.44 29.64v-.94c.04.31.04.63 0 .94z"
}), /*#__PURE__*/React.createElement("path", {
d: "M53.88 50.93v.01c0 10.04-8.23 16.87-17.89 16.87-8.68.13-16.08-6.25-17.22-14.85-.39-2.89-1.06-7.88-1.06-14.88l-2-18.37c-1.61-7.79 5.157-8.15 6.817-2.03l1.13 9.047.208.273s1.272 7.006 2.192 7.216c.37.08.123-3.186.383-.626v-3.95a3.542 3.542 0 013.04-3.97 3.52 3.52 0 013.96 3.03v.94c.04-.31.04-.63 0-.94-.25-1.93 1.17-3.72 3.1-3.98 1.35-.18 3.08 2.768 4.09 3.858 1.19-1.18 1.683-5.228 1.683-5.228l.53-14.94c0-5.88 9.285-5.463 9.285-.073l1.063 31.32.049.513.64 10.76z"
}), /*#__PURE__*/React.createElement("path", {
d: "M33.44 29.64v-.94c.04.31.04.63 0 .94z"
})), /*#__PURE__*/React.createElement("g", {
fill: colored ? 'none' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('none') ? 'white' : 'currentColor'),
stroke: "#000",
strokeLinecap: "round",
strokeWidth: 2
}, /*#__PURE__*/React.createElement("path", {
strokeMiterlimit: 10,
d: "M18.771 52.956c1.142 8.6 8.54 14.985 17.214 14.857 9.667 0 17.893-6.832 17.893-16.877v-.001l-.658-11.13a4.308 4.308 0 00-4.236-3.992h-10a3.786 3.786 0 00-4 3.5 4.327 4.327 0 003.976 3.942l1.05.117c2.186.242 3.975 1.342 3.975 2.442v2.44a12.445 12.445 0 00-5.777 2.958M18.771 52.956c-.39-2.89-1.063-7.873-1.063-14.873M17.708 38.083l-1.937-18.515M22 17.917l.944 8.69M43.5 8.25l-.458 14.91M51.875 8.458l.5 24.834M15.77 19.568c-.723-7.73 5.499-7.596 6.23-1.651M43.5 8.25c0-5.875 8.375-5.188 8.375.208"
}), /*#__PURE__*/React.createElement("path", {
strokeLinejoin: "round",
d: "M31.318 40.639c-3.322 1.227-4.997-1.935-4.874-4v-7a3.531 3.531 0 117 0"
}), /*#__PURE__*/React.createElement("path", {
strokeLinejoin: "round",
d: "M33.506 34.004v-5.318a3.531 3.531 0 117 0l.03 3.504"
})));
}
const ForwardRef = React.forwardRef(FingersHornIcon);
module.exports = ForwardRef;