adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
98 lines (97 loc) • 3.17 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgMicrophoneSensitivityHighSymbolic = (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 119,-19 v 3 h 2 v -3 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",
transform: "translate(-112 32)"
}), /* @__PURE__ */ React.createElement("path", {
d: "m 119.9998,-32 c 1.662,0 3,1.338 3,3 v 5 c 0,1.662 -1.338,3 -3,3 -1.662,0 -3,-1.338 -3,-3 v -5 c 0,-1.662 1.338,-3 3,-3 z",
transform: "translate(-112 32)"
}), /* @__PURE__ */ React.createElement("path", {
d: "m 114,-26 v 2.009766 c 0,3.306582 2.68969,5.990234 6,5.990234 3.31031,0 6,-2.683652 6,-5.990234 V -26 h -1.5 v 2.009766 c 0,2.500097 -1.99331,4.490234 -4.5,4.490234 -2.50669,0 -4.5,-1.990137 -4.5,-4.490234 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",
transform: "translate(-112 32)"
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgMicrophoneSensitivityHighSymbolic);
var microphone_sensitivity_high_symbolic_default = Memo;
export {
microphone_sensitivity_high_symbolic_default as default
};