@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
46 lines (44 loc) • 1.87 kB
JavaScript
const React = require("react");
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function HundredPointsIcon({
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",
strokeLinejoin: "round",
strokeMiterlimit: 10,
strokeWidth: 4
}, /*#__PURE__*/React.createElement("path", {
d: "M59.183 46.059h-46M59.183 54.059h-46M32.983 37.005h0a6.279 6.279 0 01-6.279-6.28V20.339a6.28 6.28 0 016.28-6.279h0a6.28 6.28 0 016.278 6.28v10.387a6.279 6.279 0 01-6.279 6.279zM52.91 37.005h0a6.279 6.279 0 01-6.28-6.28V20.339a6.28 6.28 0 016.28-6.279h0a6.28 6.28 0 016.278 6.28v10.387a6.279 6.279 0 01-6.279 6.279zM12.984 18.885l6.353-4.759v22.946"
})), /*#__PURE__*/React.createElement("g", {
fill: "none",
stroke: "#D22F27",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: 10,
strokeWidth: 4.1
}, /*#__PURE__*/React.createElement("path", {
d: "M59.183 46.059h-46M59.183 54.059h-46M32.983 37.005h0a6.279 6.279 0 01-6.279-6.28V20.339a6.28 6.28 0 016.28-6.279h0a6.28 6.28 0 016.278 6.28v10.387a6.279 6.279 0 01-6.279 6.279zM52.91 37.005h0a6.279 6.279 0 01-6.28-6.28V20.339a6.28 6.28 0 016.28-6.279h0a6.28 6.28 0 016.278 6.28v10.387a6.279 6.279 0 01-6.279 6.279zM12.984 18.885l6.353-4.759v22.946"
})));
}
const ForwardRef = React.forwardRef(HundredPointsIcon);
module.exports = ForwardRef;