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.58 kB
import * as React from "react"; function MuteIcon({ 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: "M18.908 13.727c.564-.359.953-1.105.953-1.974 0-.87-.389-1.616-.953-1.98M20.545 15.26c.878-.772 1.455-2.054 1.455-3.508 0-1.457-.578-2.74-1.457-3.512M18.615 2 2 19" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M2.977 12.246v-.65c0-3.13 2.32-5.67 5.182-5.67q0 0 0 0h1.099c.689 0 1.35-.303 1.832-.841l1.331-1.486q0 0 0 0c1.041-1.162 3.109-.524 3.4.976m-12.844 7.67q0 .313.03.616m-.03-.615.03.614m5.14 5.043h1.028c.741 0 1.452.328 1.968.911l1.359 1.533q0 0 0 0c1.072 1.21 2.848.627 3.264-.834.12-.422.13-.87.21-1.303.716-3.932.89-6.633.425-10.11m-8.254 9.803q-.255 0-.502-.027m.502.026-.502-.026M3.007 12.86q.025.255.07.503m0 0q.041.22.096.433m-.096-.433.096.433m0 0q.072.279.17.546m0 0q.125.341.287.658m-.287-.658L3.63 15m0 0q.147.29.324.556m0 0q.153.231.325.444m-.325-.444.325.444m0 0q.188.231.396.438zm3.366 1.876a5 5 0 0 1-.444-.068m.444.068-.444-.068m0 0a5 5 0 0 1-.556-.148" })); } const ForwardRef = React.forwardRef(MuteIcon); export default ForwardRef;