@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
26 lines • 1.55 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const NotificationIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("g", {
clipPath: "url(#clip0_11478_12389)"
}, /*#__PURE__*/React.createElement("path", {
d: "M12 2.25c-3.942 0-7.179 3.105-7.179 6.983v3.122a.31.31 0 0 1-.185.278l-.645.312-.001.001a3.06 3.06 0 0 0-1.74 2.743c0 1.712 1.425 3.061 3.134 3.061h13.232c1.71 0 3.134-1.349 3.134-3.061 0-1.172-.684-2.23-1.741-2.742l-.644-.312a.32.32 0 0 1-.186-.28V9.233c0-3.878-3.237-6.983-7.179-6.983M9.763 19.289a.75.75 0 0 1 .94.448l.015.028a.7.7 0 0 0 .145.166c.144.123.466.319 1.137.319.67 0 .993-.196 1.137-.32a.7.7 0 0 0 .16-.193.75.75 0 0 1 1.414.5v.002l-.001.002-.002.005-.003.011-.04.095q-.034.081-.103.195c-.093.152-.236.34-.449.522-.44.377-1.117.681-2.113.681s-1.674-.304-2.113-.68a2.2 2.2 0 0 1-.449-.523 2 2 0 0 1-.143-.29l-.003-.01-.002-.006v-.002h-.001s0 .044.001.002l-.002-.004a.75.75 0 0 1 .475-.948"
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
id: "clip0_11478_12389"
}, /*#__PURE__*/React.createElement("path", {
d: "M0 0h24v24H0z"
}))));
const ForwardRef = forwardRef(NotificationIcon);
export default ForwardRef;