UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

75 lines (74 loc) 2.97 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgMicrophoneSensitivityMutedSymbolic = (passedProps, ...restArgs) => { const { colored, containerProps = {}, ...rest } = passedProps; if (colored && typeof colored === "string") { if (!containerProps.style) { containerProps.style = {}; } Object.assign(containerProps.style, { "--custom-icon-color": colored }); } const render = (props) => /* @__PURE__ */ React.createElement("span", { ...containerProps, className: cx("Icon", containerProps.className, { colored }) }, /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", ...props }, /* @__PURE__ */ React.createElement("g", { fill: "#2e3436" }, /* @__PURE__ */ React.createElement("path", { d: "m 180,-32 c -1.662,0 -3,1.338 -3,3 v 5 c 0,1.662 1.338,3 3,3 0.7733,0 1.46912,-0.29821 2,-0.775391 V -22 h 0.22461 C 182.70179,-22.530877 183,-23.226703 183,-24 v -5 c 0,-1.662 -1.338,-3 -3,-3 z m 0,2 c 0.554,0 1,0.446 1,1 v 5 c 0,0.554 -0.446,1 -1,1 -0.554,0 -1,-0.446 -1,-1 v -5 c 0,-0.554 0.446,-1 1,-1 z m -6,4 v 2.009766 c 0,2.965746 2.16538,5.423806 5,5.90039 V -16 h 2 v -2.089844 c 0.34423,-0.05788 0.67819,-0.14804 1,-0.261718 v -1.626954 c -0.60326,0.297084 -1.27508,0.478516 -2,0.478516 -2.50669,0 -4.5,-1.990137 -4.5,-4.490234 V -26 Z m 10.5,0 v 2.009766 c 0,0.721017 -0.18244,1.38955 -0.47852,1.990234 h 1.62891 C 185.87165,-22.623635 186,-23.290791 186,-23.990234 V -26 Z", style: { lineHeight: "normal", fontVariantLigatures: "normal", fontVariantPosition: "normal", fontVariantCaps: "normal", fontVariantNumeric: "normal", fontVariantAlternates: "normal", fontFeatureSettings: "normal", textIndent: 0, textAlign: "start", textDecorationLine: "none", textDecorationStyle: "solid", textDecorationColor: "#000", textTransform: "none", textOrientation: "mixed", whiteSpace: "normal", shapePadding: 0, isolation: "auto", mixBlendMode: "normal", solidColor: "#000", solidOpacity: 1 }, color: "#000", fontWeight: 400, fontFamily: "sans-serif", overflow: "visible", opacity: 0.35, transform: "translate(-172 32)" }), /* @__PURE__ */ React.createElement("path", { d: "m 183,-21 h 1.375 L 185.5,-19.90625 186.59375,-21 H 188 v 1.46875 l -1.09375,1.0625 1.09375,1.0625 V -16 h -1.4375 L 185.5,-17.0625 184.4375,-16 H 183 v -1.40625 l 1.0625,-1.0625 -1.0625,-1.0625 z", style: { marker: "none" }, color: "#bebebe", overflow: "visible", transform: "translate(-172 32)" })))); return render(rest, ...restArgs); }; const Memo = memo(SvgMicrophoneSensitivityMutedSymbolic); var microphone_sensitivity_muted_symbolic_default = Memo; export { microphone_sensitivity_muted_symbolic_default as default };