UNPKG

@datalayer/icons-react

Version:

React.js and JupyterLab icons for data products.

59 lines (57 loc) 3.16 kB
const React = require("react"); const sizeMap = { "small": 16, "medium": 32, "large": 64 }; function WritingHandIcon({ 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: "#3F3F3F" }, /*#__PURE__*/React.createElement("path", { d: "M26.296 36.76L45.9 6.237l4.301 2.847-16.113 26.028M18.943 53.711l-3.391 4.824-5.812 4.338 2.008-7.065 3.804-5.537" })), /*#__PURE__*/React.createElement("g", { fill: "#FCEA2B" }, /*#__PURE__*/React.createElement("path", { d: "M12.511 54.697c-1.182-1.345-2.334-3.046-2.244-4.012l2.688-18.46c0-.842.188-1.591 1.071-2.07l16.348-8.271c.52-.253-1.244-2.812 4.249-.458" }), /*#__PURE__*/React.createElement("path", { d: "M20.542 40.496l.66-3.954c.066-.542.606-1.35.998-1.509l2.108-.844M21.943 53.139c2.377 7.027 10.894 6.74 5.042-2.169M23.427 51.97c4.874 8.567 15.571 8.711 6.307-4.299M28.121 49.28c13.31 17.748 14.103 4.407 5.07-1.306" }), /*#__PURE__*/React.createElement("path", { d: "M56.797 52.239c-13.047 2.788-14.96-3.412-21.214-4.352-5.087-1.055-10.79 2.25-12.74 3.86-4.443 4.284-10.263-1.57-4.764-5.688l7.255-6.73 8.267-3.937 7.814-10.37 18.639 10.011c5.653 5.653 5.653 14.82 0 20.472-4.527.495-12.548 4.18-23.554 2.668" }), /*#__PURE__*/React.createElement("path", { d: "M38.132 42.874H16.516l8.62-7.394.927 1.101 8.025-1.469 6.633-11.578 3.567 1.9zM32.059 45.907H53.54v11.268H32.059z" })), /*#__PURE__*/React.createElement("g", { fill: "none", stroke: "#000", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2 }, /*#__PURE__*/React.createElement("path", { strokeMiterlimit: 10, d: "M10.632 52.621l2.324-20.396c0-.842.187-1.591 1.07-2.07l17.179-8.72" }), /*#__PURE__*/React.createElement("path", { strokeMiterlimit: 10, d: "M19.542 39.496l.66-3.954c.066-.542.606-1.35.998-1.509l2.108-.844M26.063 35.788L45.9 6.237l4.301 2.847-16.47 25.105M15.552 56.775l-2.036 2.764-4.776 5.334L11.494 58l2.04-3.039M43.704 26.252s12.626 6.014 16.35 8.781c6.417 4.77 5.653 14.82 0 20.472-4.527.495-8.148 2.034-18.217 2.034" }), /*#__PURE__*/React.createElement("path", { d: "M29.078 55.939c.607 3.229-4.422 4.787-5.094.133M34.011 55.79c.639 3.215-4.287 4.133-4.933.149M39.05 55.395c.66 3.216-4.363 3.651-5.039.396" }), /*#__PURE__*/React.createElement("path", { strokeMiterlimit: 10, d: "M39.05 55.395l-.594-2.782M34.011 55.791l-1.002-4.557M29.078 55.939l-.623-3.077M23.984 56.072l-.093-.677M56.797 52.239c-13.047 2.788-14.96-3.412-21.214-4.352-5.087-1.055-10.79 2.25-12.74 3.86-4.443 4.284-10.263-1.57-4.764-5.688 0 0 5.009-4.692 7.255-5.73 2.183-1.007 9.551-2.124 9.551-2.124" }))); } const ForwardRef = React.forwardRef(WritingHandIcon); module.exports = ForwardRef;