@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
25 lines • 1.3 kB
JavaScript
const React = require("react");
function NotificationMutedIcon({
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-1M18.429 8.649v3.3299999999999996c0 .43.235.823.606 1.017l.647.334A2.48 2.48 0 0 1 21 15.535C21 16.896 19.933 18 18.616 18H6.624M18.43 8.649q0-.233-.016-.464m.016.464-.016-.464m0 0a7 7 0 0 0-.05-.494m0 0q-.03-.21-.072-.417m.071.417-.071-.417m0 0a7 7 0 0 0-.093-.396l-.064-.213m-1.508-2.632C15.458 2.78 13.817 2 12 2 8.45 2 5.571 4.977 5.571 8.649v3.3299999999999996c0 .43-.235.823-.606 1.016l-.647.334A2.48 2.48 0 0 0 3 15.535a2.5 2.5 0 0 0 .712 1.757M20.378 4.582s1.183.252 1.382 2.094c.2 1.842-.903 2.326-.903 2.326M3.35 4.493s-1.164.322-1.248 2.172 1.046 2.269 1.046 2.269M19 2 2 19"
}));
}
const ForwardRef = React.forwardRef(NotificationMutedIcon);
module.exports = ForwardRef;