@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
34 lines • 1.38 kB
JavaScript
const React = require("react");
function NotificationRingIcon({
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 21s-.333 1-2 1-2-1-2-1"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M18.429 8.691V8.65v0C18.429 4.977 15.549 2 12 2v0C8.45 2 5.571 4.977 5.571 8.649v3.33c0 .43-.235.823-.606 1.016l-.647.334A2.48 2.48 0 0 0 3 15.535v0C3 16.896 4.067 18 5.384 18h13.232C19.933 18 21 16.896 21 15.535v0c0-.934-.51-1.788-1.318-2.205l-.647-.334a1.15 1.15 0 0 1-.606-1.017z",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M20.378 4.582s1.183.252 1.382 2.094c.2 1.842-.903 2.326-.903 2.326M3.35 4.493s-1.164.322-1.248 2.172 1.046 2.269 1.046 2.269"
}));
}
const ForwardRef = React.forwardRef(NotificationRingIcon);
module.exports = ForwardRef;