@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
59 lines (57 loc) • 2.08 kB
JavaScript
const React = require("react");
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function Null5Icon({
title,
titleId,
size,
colored,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 72 72",
fill: colored ? 'currentColor' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('currentColor') ? 'white' : 'currentColor'),
"aria-hidden": "true",
width: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("circle", {
cx: 36,
cy: 36,
r: 26.68,
fill: colored ? '#fff' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#fff') ? 'white' : 'currentColor'),
fillRule: "evenodd"
}), /*#__PURE__*/React.createElement("g", {
strokeLinejoin: "round"
}, /*#__PURE__*/React.createElement("circle", {
cx: 36,
cy: 36,
r: 26.68,
fill: colored ? 'none' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('none') ? 'white' : 'currentColor'),
stroke: "#000",
strokeLinecap: "round",
strokeWidth: 4.74
}), /*#__PURE__*/React.createElement("path", {
fill: colored ? 'none' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('none') ? 'white' : 'currentColor'),
stroke: "#000",
strokeWidth: 4.74,
d: "M43.24 22.41l-15.01 26-.327-.189"
}), /*#__PURE__*/React.createElement("path", {
fill: colored ? 'none' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('none') ? 'white' : 'currentColor'),
fillRule: "evenodd",
stroke: "#000",
strokeLinecap: "round",
strokeMiterlimit: 10,
strokeWidth: 7.998480000000001,
d: "M36 51.209a8.327 8.327 0 01-8.329-8.329V29.11a8.33 8.33 0 0116.658 0V42.88A8.327 8.327 0 0136 51.21z",
clipRule: "evenodd"
})));
}
const ForwardRef = React.forwardRef(Null5Icon);
module.exports = ForwardRef;