@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
25 lines • 1.41 kB
JavaScript
const React = require("react");
function NotificationIcon({
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: "M9.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(NotificationIcon);
module.exports = ForwardRef;