@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
40 lines (38 loc) • 2.63 kB
JavaScript
const React = require("react");
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function OpenHandsIcon({
title,
titleId,
size,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 72 72",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
width: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("g", {
fill: "#fcea2b"
}, /*#__PURE__*/React.createElement("path", {
d: "M6.523 24.298a2.51 2.51 0 10-3.565 3.47l9.417 9.675.894.885-5.153-5.343a2.51 2.51 0 10-3.564 3.47l6.443 6.62 5.094 5.04c4.389 3.963 10.743 2.954 14.705-1.434a13.94 13.94 0 003.553-9.238c-.087-3.02-.729-10.864-.729-10.864-.35-1.82-2.595-2.925-2.75-1.946l-2.625 7.3-2.733-2.694 2.733 2.694-2.733-2.694-10.96-11a2.51 2.51 0 10-3.564 3.47l3.47 3.565 4.77 4.941L8.74 19.376a2.51 2.51 0 10-3.565 3.47l9.552 9.718M65.824 24.298a2.51 2.51 0 113.564 3.47l-9.417 9.675-.893.885 5.152-5.343a2.51 2.51 0 113.565 3.47l-6.443 6.62-5.094 5.04c-4.39 3.963-10.744 2.954-14.705-1.434A13.94 13.94 0 0138 37.443c.087-3.02.729-10.864.729-10.864.349-1.82 2.595-2.925 2.75-1.946l2.625 7.3 2.733-2.694-2.733 2.694 2.733-2.694 10.96-11a2.51 2.51 0 113.564 3.47l-3.47 3.565-4.771 4.942 10.487-10.84a2.51 2.51 0 113.565 3.47l-9.553 9.718"
})), /*#__PURE__*/React.createElement("g", {
fill: "none",
stroke: "#000",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 2
}, /*#__PURE__*/React.createElement("path", {
d: "M6.523 24.298a2.51 2.51 0 10-3.565 3.47l9.417 9.675.894.885-5.153-5.343a2.51 2.51 0 10-3.564 3.47l6.443 6.62 5.094 5.04c4.389 3.963 10.743 2.954 14.705-1.434a13.94 13.94 0 003.553-9.238c-.087-3.02-.729-10.864-.729-10.864-.35-1.82-2.595-2.925-2.75-1.946l-2.625 7.3-2.733-2.694 2.733 2.694-2.733-2.694-10.96-11a2.51 2.51 0 10-3.564 3.47l3.47 3.565 4.77 4.941L8.74 19.376a2.51 2.51 0 10-3.565 3.47l9.552 9.718M65.824 24.298a2.51 2.51 0 113.564 3.47l-9.417 9.675-.893.885 5.152-5.343a2.51 2.51 0 113.565 3.47l-6.443 6.62-5.094 5.04c-4.39 3.963-10.744 2.954-14.705-1.434A13.94 13.94 0 0138 37.443c.087-3.02.729-10.864.729-10.864.349-1.82 2.595-2.925 2.75-1.946l2.625 7.3 2.733-2.694-2.733 2.694 2.733-2.694 10.96-11a2.51 2.51 0 113.564 3.47l-3.47 3.565-4.771 4.942 10.487-10.84a2.51 2.51 0 113.565 3.47l-9.553 9.718"
})));
}
const ForwardRef = React.forwardRef(OpenHandsIcon);
module.exports = ForwardRef;