@datalayer/icons-react
Version:
React.js and JupyterLab icons for data products.
56 lines (54 loc) • 2.93 kB
JavaScript
import * as React from "react";
const sizeMap = {
"small": 16,
"medium": 32,
"large": 64
};
function PersonSurfingIcon({
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: "#92D3F5",
d: "M34 66s5 1 8 0l5-2 5-6s2-3 3-6 2.031-3.625 2.828-3.625c.797 0 1.83.625 1.83.625s.69 2.174.166 3c0 0-2.11 3.218-1.473 2.48 0 0 1.774-.355 2.649-.355s3.669.387 4 2.375c.125.75-.125 1.824 1.125 2.975 0 0 1.122 4 .709 3.97-.413-.03-4.583.542-5.834-.402 0 0-2.751-3.021-3.834-3.021 0 0-2.307 1.35-5.167 3.422C44.333 69 36.644 68.035 35 66.775"
}), /*#__PURE__*/React.createElement("g", {
fill: "#FCEA2B"
}, /*#__PURE__*/React.createElement("circle", {
cx: 35.969,
cy: 11.094,
r: 3
}), /*#__PURE__*/React.createElement("path", {
d: "M45 23v24l-2 13h-3V47l-2-8h-1l-6 8-4 10h-3l2-13 6-9 2-5v-5l-2.916-1.75s-1.707-.583-3.999.625-5.584 1.958-7.084 2.125-6.69 0-7.125 0C11.709 26 11 25.334 11 24.042c0 0 8.584-.043 10.25-.626s10.25-4.083 10.25-4.083L46.084 18l11.97 6.738 3.781 1.679s-.377 1.875-2.897 1.114c-2.275-.686-6.271-2.531-9.876-5.031-.65-.45-3.124-1.094-3.124.5"
})), /*#__PURE__*/React.createElement("g", {
fill: "none",
stroke: "#000",
strokeMiterlimit: 10,
strokeWidth: 2
}, /*#__PURE__*/React.createElement("circle", {
cx: 35.969,
cy: 11.094,
r: 3
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M11.875 24L17 23.993c2.75-.004 6.8-1.13 9-2.5 2.2-1.371 5.8-2.718 8-2.993 2.2-.275 6.25-.5 9-.5h0c2.75 0 6.35 1.125 8 2.5 1.65 1.375 4.575 3.175 6.5 4L61 26"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M45 23v22c0 1.1-.137 2.89-.304 3.977l-1.392 9.046C43.137 59.11 42.325 60 41.5 60c-.825 0-1.5-.9-1.5-2v-9c0-1.1-.219-2.873-.485-3.94l-1.03-4.12c-.266-1.067-.71-1.94-.985-1.94s-1.04.72-1.7 1.6l-3.6 4.8c-.66.88-1.535 2.436-1.943 3.457l-2.515 6.286C27.334 56.164 26.324 57 25.5 57c-.824 0-1.363-.89-1.195-1.977l1.39-9.046c.168-1.087.804-2.726 1.414-3.641l3.782-5.672c.61-.915 1.443-2.5 1.851-3.521l.516-1.286C33.666 30.836 34 29.1 34 28v-1c0-1.1-.45-2.45-1-3l-1-1M56 53s0-4 2-4 2 2 1 3M53 63.444s1.105-1.552 2-2c2-1 3 0 3 0M62 62.744s3.269 2.305 4.42.67c.645-.914.913-3.028-2.115-3.94M6.813 57.188S9.165 58.48 16 60c9 2 22.813 3.188 22.813 3.188M33 66c4 1 9 1 12-1 3.72-2.48 6-9 15-10"
})));
}
const ForwardRef = React.forwardRef(PersonSurfingIcon);
export default ForwardRef;