@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
34 lines • 1.68 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const NotificationMutedIcon = ({
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",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M18.43 9.233v3.122c0 .404.236.771.608.954l.646.312a2.3 2.3 0 0 1 1.318 2.067c0 1.277-1.067 2.312-2.383 2.312H7.867m10.564-8.767q0-.219-.015-.435m.015.435-.015-.435m0 0a6 6 0 0 0-.051-.463m0 0a6 6 0 0 0-.072-.391z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M20.093 3 3.001 19.966m.713-2.63a2.27 2.27 0 0 1-.712-1.647c0-.876.51-1.676 1.318-2.069l.647-.312c.371-.181.606-.549.606-.953V9.233C5.573 5.791 8.453 3 12.002 3c1.816 0 3.33.325 4.5 1.5l.5.5M5.572 9.233q0-.218.015-.435m-.016.435.016-.435m-.016.435v3.122c0 .404-.235.772-.606.954l-.647.313A2.3 2.3 0 0 0 3 15.689c0 1.085.771 1.995 1.81 2.244m.777-9.135q.016-.234.05-.463m0 0a6 6 0 0 1 .072-.39zM20.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",
opacity: 0.4
}));
const ForwardRef = forwardRef(NotificationMutedIcon);
module.exports = ForwardRef;