adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
64 lines (63 loc) • 2.07 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgBluetoothSymbolic = (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.984 0A1 1 0 006 1v3.586L4.707 3.293a1 1 0 10-1.414 1.414L6 7.414v1.172l-2.707 2.707a1 1 0 101.414 1.414L6 11.414V15a1 1 0 001.707.707l4-4a1 1 0 000-1.414L9.414 8l2.293-2.293a1 1 0 000-1.414l-4-4A1 1 0 006.984 0zM8 3.414L9.586 5 8 6.586zm0 6L9.586 11 8 12.586z",
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",
shapePadding: 0,
isolation: "auto",
mixBlendMode: "normal"
},
color: "#000",
fontWeight: 400,
fontFamily: "sans-serif",
overflow: "visible"
}), /* @__PURE__ */ React.createElement("path", {
d: "M3 3h1v1H3zm0 9h1v1H3zm3 3h1v1H6zM6 0h1v1H6z"
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgBluetoothSymbolic);
var bluetooth_symbolic_default = Memo;
export {
bluetooth_symbolic_default as default
};