@scienceicons/react
Version:
Open science icons for React
21 lines • 849 B
JavaScript
const React = require("react");
function SembleIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
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: "M19 17.2c0 2.5-2.4 4.5-6.9 4.5s-7.2-2.5-7.2-5 2.7-4 7.2-4 6.9 2 6.9 4.5zM16.6 11c0 1.4-2.2 1.3-4.8 1.3s-4.6 0-4.6-1.4S9.4 8 11.9 8s4.7 1.6 4.7 3zm-.3-3.8c0 1.4-1.9.5-4.5.5s-4 .8-4-.6 1.4-2.2 4-2.2 4.5 1 4.5 2.4zm-2.1-3.4c0 1-1 .3-2.4.3s-2.1.7-2.1-.3.8-1.6 2.1-1.6 2.4.6 2.4 1.6z"
}));
}
const ForwardRef = React.forwardRef(SembleIcon);
module.exports = ForwardRef;