@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 889 B
JavaScript
const React = require("react");
function BellOff02Icon({
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: "M14 21h-4M8.633 3.034A6 6 0 0118 8c0 2.1.27 3.751.648 5.032M6.258 6.257A5.998 5.998 0 006 8c0 3.09-.78 5.206-1.65 6.605-.735 1.18-1.102 1.771-1.089 1.936.015.182.054.252.2.36.133.099.732.099 1.928.099H17m4 4L3 3"
}));
}
const ForwardRef = React.forwardRef(BellOff02Icon);
module.exports = ForwardRef;