@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
66 lines (64 loc) • 2.89 kB
JavaScript
const React = require("react");
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function SparklerIcon({
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("g", {
fill: "none",
stroke: "#000",
strokeLinecap: "round",
strokeWidth: 2
}, /*#__PURE__*/React.createElement("path", {
strokeMiterlimit: 10,
d: "M27.612 16.11h0M55.898 44.382h0M55.882 16.1h0M27.593 16.128h0"
}), /*#__PURE__*/React.createElement("path", {
strokeLinejoin: "round",
d: "M41.75 10.25v14M47.75 30.25h14M41.75 50.25v-14M35.75 30.25h-14"
}), /*#__PURE__*/React.createElement("path", {
strokeMiterlimit: 10,
d: "M37.507 26.007l-6.364-6.364M52.357 19.643l-6.364 6.364M52.357 40.857l-6.364-6.364M32.262 7.347l2.715 6.556M18.84 20.77l6.557 2.715M18.843 39.753l6.556-2.718M32.269 53.171l2.714-6.557M51.252 53.164l-2.718-6.555M64.667 39.735l-6.557-2.712M64.656 20.752l-6.555 2.72M51.218 7.348l-2.707 6.56M32.236 7.358l2.715 6.556M13 57l27.638-27.76a1.5 1.5 0 012.121 0h0a1.5 1.5 0 010 2.122L19 55"
})), /*#__PURE__*/React.createElement("path", {
fill: "#9b9b9a",
d: "M11.293 57.172L39.93 28.534a2.5 2.5 0 013.535 0 2.5 2.5 0 010 3.535L14.828 60.707a1 1 0 01-1.414 0l-2.121-2.121a1 1 0 010-1.414z"
}), /*#__PURE__*/React.createElement("g", {
fill: "none",
stroke: "#f1b31c",
strokeLinecap: "round",
strokeWidth: 2
}, /*#__PURE__*/React.createElement("path", {
strokeMiterlimit: 10,
d: "M27.612 16.11h0M55.898 44.382h0M55.882 16.1h0M27.593 16.128h0"
}), /*#__PURE__*/React.createElement("path", {
strokeLinejoin: "round",
d: "M41.75 10.25v14M47.75 30.25h14M41.75 50.25v-14M35.75 30.25h-14"
}), /*#__PURE__*/React.createElement("path", {
strokeMiterlimit: 10,
d: "M37.507 26.007l-6.364-6.364M52.357 19.643l-6.364 6.364M52.357 40.857l-6.364-6.364M32.262 7.347l2.715 6.556M18.84 20.77l6.557 2.715M18.843 39.753l6.556-2.718M32.269 53.171l2.714-6.557M51.252 53.164l-2.718-6.555M64.667 39.735l-6.557-2.712M64.656 20.752l-6.555 2.72M51.218 7.348l-2.707 6.56M32.236 7.358l2.715 6.556"
})), /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("path", {
fill: "none",
stroke: "#000",
strokeLinecap: "round",
strokeMiterlimit: 10,
strokeWidth: 2,
d: "M17 52.879L40.638 29.24a1.5 1.5 0 012.121 0h0a1.5 1.5 0 010 2.121L31.92 42.201"
})));
}
const ForwardRef = React.forwardRef(SparklerIcon);
module.exports = ForwardRef;