@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
33 lines (31 loc) • 1.91 kB
JavaScript
import * as React from "react";
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function Null6Icon({
title,
titleId,
size,
colored,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 512.001 512.001",
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("path", {
d: "M256.001 172.523c-22.352 0-43.334 8.669-59.073 24.402-28.522 28.527-32.058 72.724-10.621 105.142l115.761-115.761c-13.532-8.959-29.415-13.783-46.067-13.783zM325.695 209.929L209.934 325.69c13.531 8.959 29.414 13.783 46.067 13.783 22.352 0 43.334-8.669 59.073-24.402 28.522-28.527 32.06-72.723 10.621-105.142z"
}), /*#__PURE__*/React.createElement("path", {
d: "M437.108 74.898c-99.869-99.858-262.345-99.858-362.214 0-99.858 99.858-99.858 262.339 0 362.203 49.934 49.929 115.521 74.896 181.107 74.896s131.173-24.967 181.107-74.896c99.857-99.858 99.857-262.34 0-362.203zm-51.159 74.779l-36.381 36.381c34.244 45.773 30.709 111.06-10.868 152.639-22.048 22.048-51.416 34.192-82.698 34.192-25.615 0-49.871-8.261-69.95-23.315l-36.372 36.372c-3.263 3.263-7.538 4.895-11.812 4.895s-8.55-1.632-11.812-4.895c-6.526-6.52-6.526-17.104 0-23.625l36.381-36.381c-34.244-45.773-30.709-111.06 10.869-152.639 22.048-22.048 51.416-34.192 82.698-34.192 25.615 0 49.871 8.261 69.95 23.315l36.372-36.372c6.526-6.526 17.099-6.526 23.625 0 6.523 6.52 6.523 17.103-.002 23.625z"
}));
}
const ForwardRef = React.forwardRef(Null6Icon);
export default ForwardRef;