adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
67 lines (66 loc) • 2.16 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgBluetoothDisabledSymbolic = (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: "M6 0v5.523l2 2V3.414L9.586 5 7.53 7.055l1.414 1.414 2.762-2.762a1 1 0 000-1.414l-4-4A1 1 0 007 0h-.016zm0 8.473v.113l-2.707 2.707A.996.996 0 003 12v1h1a.996.996 0 00.707-.293L6 11.414V16h1a1 1 0 00.707-.293l2.764-2.764-1.414-1.414L8 12.586v-2.113z",
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"
}), /* @__PURE__ */ React.createElement("path", {
d: "M1.531.469L.47 1.53l14 14 1.062-1.062z"
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgBluetoothDisabledSymbolic);
var bluetooth_disabled_symbolic_default = Memo;
export {
bluetooth_disabled_symbolic_default as default
};