@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 983 B
JavaScript
const React = require("react");
function MessageCircle02Icon({
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: "M21 12a9 9 0 01-12.385 8.342c-.2-.081-.3-.122-.38-.14a.909.909 0 00-.219-.024c-.083 0-.173.015-.353.045l-3.558.593c-.373.062-.56.093-.694.035a.5.5 0 01-.262-.262c-.058-.135-.027-.321.035-.694l.593-3.558c.03-.18.045-.27.045-.353a.907.907 0 00-.024-.219c-.018-.08-.059-.18-.14-.38A9 9 0 1121 12z"
}));
}
const ForwardRef = React.forwardRef(MessageCircle02Icon);
module.exports = ForwardRef;