UNPKG

@astraicons/react

Version:

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

30 lines 1.13 kB
const React = require("react"); function NotificationIcon({ 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" })); } const ForwardRef = React.forwardRef(NotificationIcon); module.exports = ForwardRef;