UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

70 lines (69 loc) 2.54 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgBluetoothHardwareDisabledSymbolic = (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 198,248 v 0.99805 0.002 3.58594 l -1.29297,-1.29297 A 1,1 0 0 0 196,251 h -1 V 251.9707 252 a 1,1 0 0 0 0.29297,0.70703 L 197.58594,255 h 4.82812 l 1.29297,-1.29297 a 1.0001,1.0001 0 0 0 0,-1.41406 l -4,-4 A 1.0001,1.0001 0 0 0 199.0293,248 1.0001,1.0001 0 0 0 199,248 Z m 2,3.41406 L 201.58594,253 200,254.58594 Z M 195,260 v 1 h 0.9707 a 1,1 0 0 0 0.0293,0 1,1 0 0 0 0.70703,-0.29297 L 197.41406,260 Z m 3,0 v 3 1 h 1 a 1.0001,1.0001 0 0 0 0.70703,-0.29297 L 203.41406,260 h -2.82812 L 200,260.58594 V 260 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(-192 -248)" }), /* @__PURE__ */ React.createElement("path", { d: "m 192,256 h 16 v 3 h -16 z", transform: "translate(-192 -248)" })))); return render(rest, ...restArgs); }; const Memo = memo(SvgBluetoothHardwareDisabledSymbolic); var bluetooth_hardware_disabled_symbolic_default = Memo; export { bluetooth_hardware_disabled_symbolic_default as default };