@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 864 B
JavaScript
import * as React from "react";
function Beaker01Icon({
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: "M10 2v4.66c0 .218 0 .326-.033.413a.47.47 0 01-.138.198c-.07.06-.183.102-.409.185a7.5 7.5 0 105.16 0c-.226-.083-.339-.125-.409-.185a.469.469 0 01-.138-.198C14 6.986 14 6.878 14 6.66V2M8.5 2h7"
}));
}
const ForwardRef = React.forwardRef(Beaker01Icon);
export default ForwardRef;