UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

28 lines 1.02 kB
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", 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", d: "M16.308 11.5c.032 2.64-.19 5.282-.663 7.89a.918.918 0 0 1-1.515.52l-3.142-2.803" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M8.824 15.25a3 3 0 0 0-1.298-.413l-.694-.054a2 2 0 0 1-1.844-1.994v-1.706a2 2 0 0 1 2-2h.402a3 3 0 0 0 1.997-.761L14.13 4.09a.918.918 0 0 1 1.515.52q.334 1.848.502 3.712M19.988 5l-14.5 13.5", opacity: 0.4 })); const ForwardRef = forwardRef(MuteIcon); module.exports = ForwardRef;