@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
62 lines (60 loc) • 2.51 kB
JavaScript
import * as React from "react";
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function MagnifyingGlassTiltedRightIcon({
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("circle", {
cx: 43.971,
cy: 25.476,
r: 11.166,
fill: "#FFF",
transform: "rotate(-57.459 43.97 25.476)"
}), /*#__PURE__*/React.createElement("path", {
fill: "#92D3F5",
d: "M53.44 31.846c1.461-2.29 2.284-6.515 1.698-9.167-.401-1.817-2.655-3.84-3.899-5.159.65 2.354 1.039 7.35-2.185 11.972-2.736 3.92-6.69 5.635-8.947 6.057 4.248 1.283 10.83.218 13.333-3.703z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#D0CFCE",
d: "M51.777 13.241a14.432 14.432 0 00-10.937-1.937 14.424 14.424 0 00-9.104 6.365c-4.304 6.746-2.318 15.737 4.428 20.041 6.745 4.305 15.735 2.32 20.042-4.427a14.417 14.417 0 001.936-10.938 14.42 14.42 0 00-6.365-9.104zm1.837 18.388c-2.18 3.415-5.882 5.281-9.661 5.281a11.36 11.36 0 01-6.135-1.792c-5.317-3.393-6.881-10.48-3.489-15.795a11.361 11.361 0 017.175-5.016 11.363 11.363 0 018.62 1.527 11.36 11.36 0 015.017 7.174c.659 2.983.116 6.045-1.527 8.621z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#3F3F3F",
d: "M31.443 40.265L24.525 50.6l-3.71 5.816c-.478.75.379 3.21 1.129 3.688.361.23 2.532.011 2.532.011L36 42.923l-4.557-2.658z"
}), /*#__PURE__*/React.createElement("g", {
fill: "none",
stroke: "#000",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: 10,
strokeWidth: 2
}, /*#__PURE__*/React.createElement("circle", {
cx: 43.971,
cy: 25.476,
r: 14.637,
transform: "rotate(-57.459 43.97 25.476)"
}), /*#__PURE__*/React.createElement("circle", {
cx: 43.971,
cy: 25.476,
r: 11.166,
transform: "rotate(-57.459 43.97 25.476)"
}), /*#__PURE__*/React.createElement("path", {
d: "M31.31 39.966l4.406 2.81-10.496 16.45c-.75 1.176-2.344 1.5-3.56.723h0c-1.217-.776-1.596-2.358-.846-3.533l10.496-16.45z"
})));
}
const ForwardRef = React.forwardRef(MagnifyingGlassTiltedRightIcon);
export default ForwardRef;