UNPKG

@datalayer/icons-react

Version:

React.js and JupyterLab icons for data products.

69 lines (67 loc) 3.53 kB
const React = require("react"); const sizeMap = { "small": 16, "medium": 32, "large": 64 }; function DollardBankNoteIcon({ 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: "#FFF", d: "M14.639 23.038h46.414v27.88H14.639z" }), /*#__PURE__*/React.createElement("path", { fill: "#5C9E31", d: "M22.285 48.715h31.11v2.938h-31.11zM19.777 22.336h31.11v2.938h-31.11z" }), /*#__PURE__*/React.createElement("path", { fill: "#5C9E31", d: "M59.36 20.73v.61H56.3a1 1 0 00-.99-.92H23.4a1 1 0 00-.99.92h-8.89V22h-.58v30.62h9.46c0 .55.45 1 1 1h31.91c.55 0 1-.45 1-1h6V20.73h-2.95zm0 25.18c-.13-.01-.28-.01-.43-.01-2.15 0-3.95 1.68-4.05 3.81H20.33c-.09-2.13-1.88-3.81-4.05-3.81-.14 0-.27 0-.39.01V28c.12.01.25.01.39.01 2.16 0 3.94-1.65 4.05-3.76h34.55c.13 2.11 1.91 3.76 4.05 3.76.15 0 .3 0 .43-.01v17.91z" }), /*#__PURE__*/React.createElement("ellipse", { cx: 37.34, cy: 36.676, fill: "#5C9E31", stroke: "#5C9E31", strokeMiterlimit: 10, strokeWidth: 2, rx: 16.171, ry: 10.009 }), /*#__PURE__*/React.createElement("path", { fill: "#D0CFCE", d: "M46.028 22.378v29.286c0 .105-.02.2-.05.297a1 1 0 01-.95.66h-15.34a1 1 0 01-.95-.66.975.975 0 01-.05-.297V22.378c0-.105.02-.201.05-.297a1 1 0 01.95-.66h15.34a1 1 0 01.95.66c.03.096.05.192.05.297z" }), /*#__PURE__*/React.createElement("path", { fill: "#5C9E31", d: "M48.753 29.585c2.94 1.813 4.758 4.32 4.758 7.09 0 2.795-1.85 5.322-4.834 7.138M24.74 42.95c-2.234-1.717-3.571-3.899-3.571-6.274 0-2.57 1.565-4.915 4.139-6.687" }), /*#__PURE__*/React.createElement("g", { fill: "none", stroke: "#000", strokeLinecap: "round", strokeMiterlimit: 10, strokeWidth: 2 }, /*#__PURE__*/React.createElement("path", { strokeLinejoin: "round", d: "M50.028 24.25h4.852c.13 2.11 1.91 3.76 4.05 3.76.15 0 .3 0 .43-.01v17.91c-.13-.01-.28-.01-.43-.01-2.15 0-3.95 1.68-4.05 3.81h-4.853m-24.92 0H20.33c-.09-2.13-1.88-3.81-4.05-3.81-.14 0-.27 0-.39.01V28c.12.01.25.01.39.01 2.16 0 3.94-1.65 4.05-3.76h4.385M46.028 22.378v29.286c0 .105-.02.2-.05.297a1 1 0 01-.95.66h-15.34a1 1 0 01-.95-.66.975.975 0 01-.05-.297V22.378c0-.105.02-.201.05-.297a1 1 0 01.95-.66h15.34a1 1 0 01.95.66c.03.096.05.192.05.297z" }), /*#__PURE__*/React.createElement("path", { strokeLinejoin: "round", d: "M25.108 52.621H13.94a1 1 0 01-1-1v-29.2a1 1 0 011-1h10.838M49.772 21.42H61.31a1 1 0 011 1v29.201a1 1 0 01-1 1H49.772" }), /*#__PURE__*/React.createElement("path", { d: "M48.753 29.585c2.94 1.813 4.758 4.32 4.758 7.09 0 2.795-1.85 5.322-4.834 7.138M24.74 42.95c-2.234-1.717-3.571-3.899-3.571-6.274 0-2.57 1.565-4.915 4.139-6.687" }), /*#__PURE__*/React.createElement("path", { strokeLinejoin: "round", d: "M39.663 34.22c-.219-.85-1.165-1.491-2.3-1.491h0c-1.295 0-2.346.836-2.346 1.868s1.05 1.869 2.347 1.869l-.048.007c1.296 0 2.347.836 2.347 1.868s-1.05 1.869-2.347 1.869h0c-1.134 0-2.08-.64-2.299-1.492M37.34 32.729v-1.781M37.34 41.991V40.21" }))); } const ForwardRef = React.forwardRef(DollardBankNoteIcon); module.exports = ForwardRef;