UNPKG

@datalayer/icons-react

Version:

React.js and JupyterLab icons for data products.

37 lines (35 loc) 1.71 kB
const React = require("react"); const sizeMap = { "small": 16, "medium": 32, "large": 64 }; function DollardHeavyIcon({ 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: "#9b9b9a", d: "M35.5 33c-1.76 0-7.5-.397-7.5-5.5s5.74-5.5 7.5-5.5c8.5 0 8.5 3.996 8.5 5.5a3.5 3.5 0 007 0c0-6.68-4.23-11.05-11.5-12.192V12.5a4 4 0 00-8 0v2.904C25.088 16.719 21 21.244 21 27.5 21 34.977 26.827 40 35.5 40c2.94 0 8.5 1.15 8.5 5.5S38.44 51 35.5 51c-1.76 0-7.5-.397-7.5-5.5a3.5 3.5 0 00-7 0c0 6.255 4.088 10.78 10.5 12.096V59.5a4 4 0 008 0v-1.899C45.686 56.373 51 52.273 51 45.5 51 37.294 43.202 33 35.5 33z" }), /*#__PURE__*/React.createElement("path", { fill: "none", stroke: "#000", strokeMiterlimit: 10, strokeWidth: 2, d: "M35.5 33c-1.76 0-7.5-.397-7.5-5.5s5.74-5.5 7.5-5.5c8.5 0 8.5 3.996 8.5 5.5a3.5 3.5 0 007 0c0-6.68-4.23-11.05-11.5-12.192V12.5a4 4 0 00-8 0v2.904C25.088 16.719 21 21.244 21 27.5 21 34.977 26.827 40 35.5 40c2.94 0 8.5 1.15 8.5 5.5S38.44 51 35.5 51c-1.76 0-7.5-.397-7.5-5.5a3.5 3.5 0 00-7 0c0 6.255 4.088 10.78 10.5 12.096V59.5a4 4 0 008 0v-1.899C45.686 56.373 51 52.273 51 45.5 51 37.294 43.202 33 35.5 33z" })); } const ForwardRef = React.forwardRef(DollardHeavyIcon); module.exports = ForwardRef;