@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
21 lines • 1.52 kB
JavaScript
import * as React from "react";
function NotificationMutedIcon({
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", {
d: "M3.763 16.053c0 .452.11.876.304 1.244L2.219 19.08a.704.704 0 0 0 0 1.023.77.77 0 0 0 1.062 0L20.504 3.487a.705.705 0 0 0 0-1.022.77.77 0 0 0-1.06 0l-1.797 1.732C16.458 2.846 14.763 2 12.882 2 9.285 2 6.368 5.091 6.368 8.904v3.457c0 .447-.238.855-.614 1.055l-.656.346c-.818.435-1.335 1.322-1.335 2.291M19.089 6.808c.199.66.306 1.365.306 2.096v3.457c0 .447.238.855.615 1.056l.655.347c.818.433 1.335 1.32 1.335 2.29 0 1.413-1.081 2.559-2.415 2.559H6.85zM10.762 19.628a.76.76 0 0 1 .94.432l.015.027a.7.7 0 0 0 .145.16c.144.118.467.307 1.137.307.671 0 .993-.189 1.137-.308a.7.7 0 0 0 .161-.186.76.76 0 0 1 .94-.432.717.717 0 0 1 .474.914l-.712-.229.712.23-.001.003-.002.005-.004.01a1 1 0 0 1-.039.092 2 2 0 0 1-.104.188 2.2 2.2 0 0 1-.448.503c-.44.363-1.118.656-2.114.656s-1.673-.293-2.113-.656a2.2 2.2 0 0 1-.449-.503 2 2 0 0 1-.133-.255l-.002-.006-.008-.019-.003-.01-.002-.005v-.002l-.001-.001.711-.23-.711.229a.717.717 0 0 1 .474-.915"
}));
}
const ForwardRef = React.forwardRef(NotificationMutedIcon);
export default ForwardRef;