@scienceicons/react
Version:
Open science icons for React
21 lines • 772 B
JavaScript
import * as React from "react";
function JupyterIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 20 20",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M10.2 16.3c-3.7 0-6.9-1.3-8.6-3.3 1.8 4.7 7 7.2 11.7 5.4 2.5-.9 4.4-2.9 5.4-5.4-1.6 2-4.7 3.3-8.5 3.3zM10.2 3.7c3.7 0 6.9 1.3 8.6 3.3-1.8-4.7-7-7.2-11.7-5.4-2.5.8-4.5 2.8-5.5 5.3 1.7-1.9 5-3.2 8.6-3.2z"
}));
}
const ForwardRef = React.forwardRef(JupyterIcon);
export default ForwardRef;