@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
47 lines (45 loc) • 2.75 kB
JavaScript
const React = require("react");
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function SosStencilIcon({
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: "#FCEA2B",
d: "M59 60H13a1.002 1.002 0 01-1-1V13a1.002 1.002 0 011-1h46c.55 0 .998.447 1 1v46a.945.945 0 01-1 1z"
}), /*#__PURE__*/React.createElement("path", {
fill: "none",
stroke: "#000",
strokeMiterlimit: 10,
strokeWidth: 2,
d: "M59 60H13a1.002 1.002 0 01-1-1V13a1.002 1.002 0 011-1h46c.55 0 .998.447 1 1v46a.945.945 0 01-1 1z"
}), /*#__PURE__*/React.createElement("path", {
d: "M26.597 32.837c.369.095.67.362.807.718a1.02 1.02 0 101.991-.442 3.305 3.305 0 00-2.798-2.386v2.11zM25.28 38.914a1.57 1.57 0 01-1.218-.909 1.02 1.02 0 10-1.936.644 3.65 3.65 0 003.153 2.333v-2.068z"
}), /*#__PURE__*/React.createElement("path", {
d: "M25.894 34.815a1.006 1.006 0 00-.096-.004c-.946 0-1.58-.549-1.58-1.06 0-.41.412-.84 1.06-.996v-2.062a3.254 3.254 0 00-3.1 3.057 3.32 3.32 0 003.421 3.097c.031.002.063.004.096.004.946 0 1.581.549 1.581 1.06a1.056 1.056 0 01-.678.866v2.131a3.186 3.186 0 002.718-2.996 3.32 3.32 0 00-3.422-3.097z"
}), /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("path", {
d: "M45.97 38.907a1.554 1.554 0 01-1.163-.902 1.02 1.02 0 00-1.935.645 3.646 3.646 0 003.097 2.328v-2.072zM47.288 32.814c.393.088.716.366.862.741a1.02 1.02 0 101.991-.442 3.318 3.318 0 00-2.854-2.398v2.099z"
}), /*#__PURE__*/React.createElement("path", {
d: "M46.64 34.815a1.006 1.006 0 00-.095-.004c-.946 0-1.581-.549-1.581-1.06 0-.4.388-.817 1.005-.984v-2.07a3.245 3.245 0 00-3.045 3.053 3.32 3.32 0 003.42 3.097 1.5 1.5 0 00.097.004c.945 0 1.58.549 1.58 1.06a1.08 1.08 0 01-.733.888v2.123a3.198 3.198 0 002.774-3.01 3.32 3.32 0 00-3.422-3.097z"
})), /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("path", {
d: "M35.532 38.858a1.993 1.993 0 01-1.358-1.882v-2.394a1.993 1.993 0 011.358-1.883v-2.09a4.033 4.033 0 00-3.398 3.973v2.393a4.033 4.033 0 003.398 3.973v-2.09zM36.85 30.613v2.098a1.994 1.994 0 011.319 1.87v2.394a1.994 1.994 0 01-1.319 1.87v2.098a4.035 4.035 0 003.36-3.967v-2.394a4.035 4.035 0 00-3.36-3.969z"
})));
}
const ForwardRef = React.forwardRef(SosStencilIcon);
module.exports = ForwardRef;