@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
51 lines (49 loc) • 2.6 kB
JavaScript
import * as React from "react";
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function MoneyMouthFaceIcon({
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("circle", {
cx: 36,
cy: 36,
r: 24,
fill: "#fcea2b"
}), /*#__PURE__*/React.createElement("path", {
fill: "#fff",
d: "M30.498 53.374c-4.296-1.49-6.461-4.801-6.461-8.684h.094s12.137 3.063 23.683.067l.16-.066a8.881 8.881 0 01-6.415 8.684"
}), /*#__PURE__*/React.createElement("path", {
fill: "#b1cc33",
d: "M40.538 49.289s1.518 8.819-1.064 10.94l.025-.023a4.884 4.884 0 01-7.008 0c-2.583-2.12-1.065-10.939-1.065-10.939"
}), /*#__PURE__*/React.createElement("g", {
fill: "none",
stroke: "#000",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 2
}, /*#__PURE__*/React.createElement("path", {
d: "M30.498 53.374c-4.296-1.49-6.461-4.801-6.461-8.684h.094s12.137 3.063 23.683.067l.16-.066a8.881 8.881 0 01-6.415 8.684M20.28 27.2a6.306 6.306 0 013.39-3 6.304 6.304 0 014.53-.42M50.89 27.2a7.19 7.19 0 00-7.91-3.43M44.324 57.447a23 23 0 10-16.59.023"
}), /*#__PURE__*/React.createElement("path", {
d: "M20.28 27.2a6.306 6.306 0 013.39-3 6.304 6.304 0 014.53-.42M50.89 27.2a7.19 7.19 0 00-7.91-3.43M40.538 49.289s1.518 8.819-1.064 10.94l.025-.023a4.884 4.884 0 01-7.008 0c-2.583-2.12-1.065-10.939-1.065-10.939M29.23 31.55a1.935 1.935 0 00-1.95-1.267h0a1.823 1.823 0 00-1.992 1.586 1.823 1.823 0 001.991 1.585l-.04.006a1.823 1.823 0 011.991 1.586 1.823 1.823 0 01-1.991 1.585h0a1.935 1.935 0 01-1.95-1.266M27.259 30.284v-1.512M27.259 38.142v-1.511M46.267 31.55a1.935 1.935 0 00-1.95-1.267h0a1.823 1.823 0 00-1.992 1.586 1.823 1.823 0 001.991 1.585l-.04.006a1.823 1.823 0 011.991 1.586 1.823 1.823 0 01-1.99 1.585h0a1.935 1.935 0 01-1.951-1.266M44.296 30.284v-1.512M44.296 38.142v-1.511"
}), /*#__PURE__*/React.createElement("path", {
d: "M37.897 53.146a1.935 1.935 0 00-1.95-1.266h0a1.627 1.627 0 100 3.17l-.04.007a1.627 1.627 0 110 3.17h0a1.935 1.935 0 01-1.951-1.265M35.926 51.88v-1.511M35.926 59.739v-1.511"
})));
}
const ForwardRef = React.forwardRef(MoneyMouthFaceIcon);
export default ForwardRef;