@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
45 lines (43 loc) • 1.93 kB
JavaScript
const React = require("react");
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function SosIcon({
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("path", {
fill: "#D22F27",
strokeMiterlimit: 10,
strokeWidth: 2,
d: "M59.035 60h-46.07a.968.968 0 01-.965-.965v-46.07c0-.53.434-.965.965-.965h46.07c.53 0 .965.434.965.965v46.07c0 .53-.434.965-.965.965z"
}), /*#__PURE__*/React.createElement("g", {
fill: "none",
stroke: "#000",
strokeMiterlimit: 10
}, /*#__PURE__*/React.createElement("path", {
strokeWidth: 2,
d: "M59.035 60h-46.07a.968.968 0 01-.965-.965v-46.07c0-.53.434-.965.965-.965h46.07c.53 0 .965.434.965.965v46.07c0 .53-.434.965-.965.965z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 3.004,
d: "M36 42.01v0a4.29 4.29 0 01-4.291-4.291v-3.433A4.29 4.29 0 0136 29.995v0a4.29 4.29 0 014.291 4.291v3.433A4.29 4.29 0 0136 42.01zM26.21 32.39c-.352-1.367-1.871-2.396-3.692-2.396v0c-2.082 0-3.769 1.344-3.769 3.001s1.687 3.001 3.769 3.001l-.077.011c2.082 0 3.77 1.344 3.77 3.001 0 1.657-1.688 3.001-3.77 3.001v0c-1.82 0-3.34-1.029-3.692-2.396M53.25 32.39c-.352-1.367-1.871-2.396-3.692-2.396v0c-2.082 0-3.769 1.344-3.769 3.001s1.687 3.001 3.769 3.001l-.077.011c2.082 0 3.77 1.344 3.77 3.001 0 1.657-1.688 3.001-3.77 3.001v0c-1.82 0-3.34-1.029-3.692-2.396"
})));
}
const ForwardRef = React.forwardRef(SosIcon);
module.exports = ForwardRef;