UNPKG

@astraicons/react

Version:

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

25 lines 1.64 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", 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", { fillRule: "evenodd", d: "M20.135 8.473a.75.75 0 0 1 1.058-.07c1.061.932 1.712 2.43 1.712 4.076 0 1.644-.65 3.14-1.709 4.072a.75.75 0 0 1-.99-1.126c.697-.613 1.2-1.68 1.2-2.946s-.504-2.335-1.202-2.948a.75.75 0 0 1-.07-1.058m-1.701 1.622a.75.75 0 0 1 1.036-.225c.818.526 1.298 1.535 1.298 2.61 0 1.073-.48 2.085-1.301 2.607a.75.75 0 0 1-.805-1.266c.307-.195.606-.676.606-1.341s-.298-1.148-.61-1.349a.75.75 0 0 1-.224-1.036", clipRule: "evenodd" }), /*#__PURE__*/React.createElement("path", { d: "M20.313 2.22a.75.75 0 0 1-.001 1.06l-17.032 17a.75.75 0 1 1-1.06-1.061l2.187-2.167c-.616-.549-1.093-1.544-1.254-1.973a6 6 0 0 1-.265-.979 7.6 7.6 0 0 1-.103-1.176v-.65c0-3.13 2.61-5.605 5.471-5.605h1.1c.689 0 1.297-.364 1.78-.902a86 86 0 0 1 1.255-1.353q.066-.073.134-.142c1.063-1.064 3.18-.47 3.447 1.224l3.28-3.277a.75.75 0 0 1 1.06.001M9.272 18.645H8.244c-.169 0-.422-.002-.587-.02a9 9 0 0 1-.614-.087l9.504-9.498c.465 3.476.248 6-.473 9.913-.08.432-.09.88-.212 1.302-.414 1.432-2.157 2.032-3.237.924l-.141-.151a84 84 0 0 1-1.309-1.425c-.516-.583-1.14-.906-1.903-.958" })); } const ForwardRef = React.forwardRef(MuteIcon); export default ForwardRef;