@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
25 lines • 2.35 kB
JavaScript
import * as React from "react";
function NotificationRingIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M18.429 8.81C18.429 5.05 15.549 2 12 2S5.571 5.05 5.571 8.81v3.41c0 .44-.235.842-.606 1.04l-.647.341C3.51 14.031 3 14.905 3 15.861c0 1.394 1.067 2.524 2.384 2.524h13.232c1.317 0 2.384-1.13 2.384-2.524 0-.956-.51-1.83-1.318-2.258l-.647-.342a1.18 1.18 0 0 1-.606-1.042z",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
d: "M4.035 8.12a.71.71 0 0 1 .432.913.763.763 0 0 1-.959.445l.253-.683c-.253.683-.254.682-.254.682h-.003L3.5 9.474l-.011-.004a1 1 0 0 1-.096-.04 2.262 2.262 0 0 1-.735-.557c-.385-.442-.691-1.124-.656-2.12.035-.995.388-1.66.804-2.083.202-.204.405-.338.567-.423a2 2 0 0 1 .304-.13l.01-.002.006-.002h.002s.002 0 .206.693l-.204-.694a.75.75 0 0 1 .926.492c.11.376-.11.77-.495.89l-.041.019a.8.8 0 0 0-.197.149c-.143.146-.365.464-.389 1.13-.023.666.176.994.31 1.147a.8.8 0 0 0 .224.18M19.966 8.12a.71.71 0 0 0-.433.913c.14.377.57.576.96.445l-.253-.683c.252.683.253.682.253.682h.004l.004-.002.01-.004a1 1 0 0 0 .096-.04q.082-.035.2-.104c.155-.093.348-.238.535-.452.386-.443.692-1.125.657-2.12s-.388-1.661-.804-2.084a2.3 2.3 0 0 0-.773-.518l-.098-.034-.011-.003-.005-.002h-.003l-.205.693.204-.694a.75.75 0 0 0-.926.492c-.11.376.11.77.495.89q.01.003.041.019c.045.024.118.07.196.149.144.146.366.464.39 1.13.023.666-.176.994-.31 1.147a.8.8 0 0 1-.224.18M9.763 19.628a.76.76 0 0 1 .94.432l.015.027a.7.7 0 0 0 .145.16c.144.118.466.307 1.137.307.67 0 .993-.189 1.137-.308a.7.7 0 0 0 .16-.186.76.76 0 0 1 .94-.432.717.717 0 0 1 .474.914L14 20.313l.711.23-.001.003-.002.005-.003.01-.04.092a2 2 0 0 1-.103.188 2.2 2.2 0 0 1-.449.503c-.44.363-1.117.656-2.113.656s-1.674-.293-2.113-.656a2.2 2.2 0 0 1-.449-.503 1.7 1.7 0 0 1-.143-.28l-.003-.01-.002-.005v-.002l-.001-.001.711-.23-.712.229a.717.717 0 0 1 .475-.915"
}));
}
const ForwardRef = React.forwardRef(NotificationRingIcon);
export default ForwardRef;