@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 1.13 kB
JavaScript
import * as React from "react";
function Bell04Icon({
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.39 18.015a3 3 0 01-5.795 1.553M10.891 5.74a2.5 2.5 0 10-3.47.93m8.815 2.775c-.357-1.333-1.31-2.447-2.65-3.097-1.339-.651-2.955-.785-4.492-.373-1.537.411-2.869 1.336-3.704 2.569-.834 1.233-1.102 2.674-.745 4.006.59 2.204.476 3.963.103 5.299-.425 1.523-.638 2.284-.58 2.437.065.175.113.223.287.29.152.06.792-.112 2.071-.455l11.866-3.179c1.28-.343 1.919-.514 2.021-.642.117-.145.134-.21.104-.395-.027-.16-.591-.714-1.721-1.82-.991-.971-1.97-2.436-2.56-4.64z"
}));
}
const ForwardRef = React.forwardRef(Bell04Icon);
export default ForwardRef;