@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 1.01 kB
JavaScript
import * as React from "react";
function MicroscopeIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M3 22h9M11 6.252a8 8 0 015 15.166M5.5 13h4c.465 0 .697 0 .89.038a2 2 0 011.572 1.572c.038.193.038.425.038.89s0 .697-.038.89a2 2 0 01-1.572 1.572C10.197 18 9.965 18 9.5 18h-4c-.465 0-.697 0-.89-.038a2 2 0 01-1.572-1.572C3 16.197 3 15.965 3 15.5s0-.697.038-.89a2 2 0 011.572-1.572C4.803 13 5.035 13 5.5 13zM4 5.5V13h7V5.5a3.5 3.5 0 10-7 0z"
}));
}
const ForwardRef = React.forwardRef(MicroscopeIcon);
export default ForwardRef;