@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 1.05 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const MuteIcon = ({
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("path", {
d: "M16.302 10.75a.75.75 0 0 1 .759.741 42 42 0 0 1-.675 8.032c-.233 1.282-1.78 1.814-2.752.947l-3.142-2.803a.75.75 0 0 1 .998-1.12l3.143 2.804a.168.168 0 0 0 .276-.095c.466-2.56.683-5.155.651-7.747a.75.75 0 0 1 .742-.759M13.635 3.53c.972-.868 2.519-.336 2.752.946q.225 1.249.375 2.506l2.72-2.532a.75.75 0 0 1 1.02 1.1l-14.5 13.5a.75.75 0 0 1-1.02-1.1l2.533-2.359-.02-.003q-.013 0-.024-.003l-.694-.055a2.75 2.75 0 0 1-2.535-2.74v-1.707a2.75 2.75 0 0 1 2.75-2.75h.402a2.25 2.25 0 0 0 1.498-.571z"
}));
const ForwardRef = forwardRef(MuteIcon);
module.exports = ForwardRef;