@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
48 lines (46 loc) • 1.97 kB
JavaScript
import * as React from "react";
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function SharkIcon({
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: "#9B9B9A",
d: "M18.25 40.965S15 46.828 11 49.931c0 0 2-4.138 1-8.276s-8-9.31-8-9.31 10 0 14 5.172c0 0 17 1.035 21-6.207 0 0 1-5.172-3-9.31 0 0 5 0 10 4.138 4.846 4.01 3.116 4.134 9.38 7.905.408.247.848.443 1.3.588L69 38.55s0 4.139-14 6.208c0 0-1 5.172-5 7.241 0 0 2-6.207-1-6.207 0 0-2 0-9-1.034"
}), /*#__PURE__*/React.createElement("path", {
fill: "#D0CFCE",
d: "M37.505 42.314s-3.132 1.905-3.679 4.455c0 0-2.866-3.02-4.972-2.56l4.759-3.47M44.556 37s4.25 2 0 5M46.556 37s4.25 2 0 5M48.556 37s4.25 2 0 5"
}), /*#__PURE__*/React.createElement("g", {
fill: "none",
stroke: "#000",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: 10
}, /*#__PURE__*/React.createElement("path", {
strokeWidth: 2,
d: "M40 44c7 1 9 1 9 1 3 0 1 6 1 6 4-2 5-7 5-7 14-2 14-6 14-6l-12.32-3.79a6.239 6.239 0 01-1.3-.568C49.115 29.996 50.845 29.877 46 26c-5-4-10-4-10-4 4 4 3 9 3 9-4 7-21 6-21 6-4-5-14-5-14-5s7 5 8 9-1 8-1 8c4-3 7.25-8.667 7.25-8.667L27 42"
}), /*#__PURE__*/React.createElement("path", {
strokeWidth: 2,
d: "M37 43s-2.928 1.668-3.478 3.836c0 0-2.594-2.504-4.548-2.078l4.458-3.02"
}), /*#__PURE__*/React.createElement("path", {
d: "M45 37s2 2 0 5M47 37s2 2 0 5M49 37s2 2 0 5"
})));
}
const ForwardRef = React.forwardRef(SharkIcon);
export default ForwardRef;