UNPKG

@datalayer/icons-react

Version:

React.js and JupyterLab icons for data products.

61 lines (59 loc) 2.56 kB
const React = require("react"); const sizeMap = { "small": 16, "medium": 32, "large": 64 }; function BlackNibIcon({ 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("path", { fill: "#3f3f3f", d: "M50.875 34.029a2.715 2.715 0 01-1.932-.8L38.717 23.002a2.73 2.73 0 010-3.863l9.557-9.556a1.017 1.017 0 011.396 0l12.693 12.693a.988.988 0 010 1.395l-9.556 9.558a2.714 2.714 0 01-1.932.8z" }), /*#__PURE__*/React.createElement("path", { fill: "#fcea2b", d: "M48.14 35.024a1.839 1.839 0 01-1.298-.54L37.48 25.12a1.8 1.8 0 01-.03-2.543l1.116-1.115a1.008 1.008 0 011.426 0l10.51 10.51a1.009 1.009 0 010 1.426l-1.116 1.115a1.755 1.755 0 01-1.245.511zm.127-1.968l.001.002z" }), /*#__PURE__*/React.createElement("path", { fill: "#d0cfce", d: "M14.505 57.458a.934.934 0 010-1.322c5.631-5.631 5.052-22.573 5.046-22.744a.934.934 0 01.712-.944c.126-.031 12.674-3.134 17.807-8.267a.934.934 0 011.322 0l8.39 8.39a.934.934 0 010 1.322c-5.132 5.133-8.236 17.68-8.267 17.807a.934.934 0 01-.944.712c-.17-.006-17.118-.58-22.744 5.046a.934.934 0 01-1.322 0z" }), /*#__PURE__*/React.createElement("circle", { cx: 36.07, cy: 35.876, r: 3, fill: "#fff" }), /*#__PURE__*/React.createElement("g", { fill: "none", stroke: "#000", strokeLinecap: "round", strokeLinejoin: "round" }, /*#__PURE__*/React.createElement("path", { strokeWidth: 1.869, d: "M15.1 56.846c5.985-5.985 5.319-23.441 5.319-23.441s10.043-2.446 16.094-6.729" }), /*#__PURE__*/React.createElement("path", { strokeWidth: 1.869, d: "M15.1 56.846c5.985-5.985 23.441-5.319 23.441-5.319s2.446-10.043 6.728-16.095" }), /*#__PURE__*/React.createElement("circle", { cx: 36.07, cy: 35.876, r: 3, strokeWidth: 1.974 }), /*#__PURE__*/React.createElement("path", { strokeWidth: 2, d: "M15.1 56.846l18.851-18.851M48.972 10.28l-9.557 9.557a1.745 1.745 0 00-.155 2.29l-1.134 1.131a.795.795 0 00.03 1.123l9.409 9.409a.795.795 0 001.123.03l1.13-1.135a1.745 1.745 0 002.29-.154l9.557-9.557" }))); } const ForwardRef = React.forwardRef(BlackNibIcon); module.exports = ForwardRef;