UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

33 lines 1.35 kB
const React = require("react"); const { forwardRef } = require("react"); const NotificationRingIcon = ({ title, titleId, ...props }, ref) => /*#__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: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M14 20s-.333 1-2 1-2-1-2-1" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M18.429 9.273v-.04 0C18.429 5.791 15.549 3 12 3v0C8.45 3 5.571 5.791 5.571 9.233v3.122c0 .404-.235.772-.606.952l-.647.313A2.31 2.31 0 0 0 3 15.69v0C3 16.965 4.067 18 5.384 18h13.232C19.933 18 21 16.965 21 15.689v0c0-.876-.51-1.676-1.318-2.067l-.647-.313a1.07 1.07 0 0 1-.606-.954z", clipRule: "evenodd" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M20.378 5.582s1.183.252 1.382 2.094c.2 1.842-.903 2.326-.903 2.326M3.35 5.493s-1.164.322-1.248 2.172 1.046 2.269 1.046 2.269" })); const ForwardRef = forwardRef(NotificationRingIcon); module.exports = ForwardRef;