@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
42 lines (40 loc) • 2.63 kB
JavaScript
const React = require("react");
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function FourLeafCloverIcon({
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: "#B1CC33",
d: "M48.868 32.557l-3.69-3.1 4.63 1.335c2.43.483 4.685.321 5.798-1.768a4.286 4.286 0 00-1.767-5.797l-1.891-1.008.336-.63.672-1.26a4.286 4.286 0 00-1.768-5.798c-2.089-1.113-4.013-.01-5.797 1.767l-3.1 3.69 1.335-4.63c.489-2.366.321-4.685-1.767-5.798s-4.685-.322-5.798 1.767l-1.008 1.891-.63-.336-1.26-.671c-2.09-1.113-4.686-.322-5.798 1.767s-.192 4.183 1.767 5.797l4.56 3.56.013.01-4.553-1.49c-.884-.29-1.798-.498-2.727-.533-1.653-.062-3.063.37-3.917 1.785-1.284 2.126-.344 4.934 1.847 6.102l1.697.904-.336.63-.583 1.095c-1.147 2.154-.375 4.96 1.816 6.034 2.038 1 3.967.026 5.66-1.837l3.1-3.69-1.335 4.63c-.504 2.02-.321 4.685 1.768 5.798a4.286 4.286 0 005.797-1.768l1.008-1.891.63.336 1.261.672a4.286 4.286 0 005.798-1.767c1.112-2.09.251-4.066-1.768-5.798z"
}), /*#__PURE__*/React.createElement("g", {
fill: "none",
stroke: "#000",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 2
}, /*#__PURE__*/React.createElement("path", {
d: "M30.366 41.03c-3.438 3.547-7.676 10.245-5.829 20.734"
}), /*#__PURE__*/React.createElement("path", {
strokeMiterlimit: 10,
d: "M45.102 29.335l4.599 1.44c2.418.538 4.676.427 5.836-1.636s.428-4.676-1.635-5.836l-1.868-1.05.35-.623.7-1.245c1.16-2.063.429-4.676-1.634-5.836s-4.013-.1-5.837 1.635l-3.182 3.619M35.57 32.006l-1.44 4.6c-.55 2.007-.428 4.675 1.635 5.835s4.676.428 5.836-1.635l1.05-1.867.623.35 1.245.7c2.064 1.16 4.677.428 5.837-1.635s.344-4.06-1.635-5.836l-3.62-3.183M33.77 22.963l-4.518-1.593c-.877-.309-1.786-.538-2.714-.594-1.651-.1-3.07.3-3.956 1.695-1.332 2.096-.457 4.925 1.708 6.142l1.676.943-.35.622-.608 1.081c-1.196 2.128-.488 4.95 1.678 6.074 2.015 1.046 3.965.116 5.7-1.708l3.183-3.62M42.431 19.803l1.44-4.6c.542-2.353.427-4.676-1.636-5.836S37.56 8.94 36.4 11.002l-1.05 1.868-.623-.35-1.245-.7a4.286 4.286 0 00-5.836 1.635c-1.16 2.063-.287 4.177 1.635 5.836l4.49 3.672"
})));
}
const ForwardRef = React.forwardRef(FourLeafCloverIcon);
module.exports = ForwardRef;