UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

43 lines (42 loc) 1.62 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgNetworkCellular3GSymbolic = (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("path", { d: "M2.063 0A2.048 2.048 0 000 2.063v11.874C0 15.088.912 16 2.063 16h11.874A2.048 2.048 0 0016 13.937V2.063A2.048 2.048 0 0013.937 0zM2 3h4a1 1 0 01.875 1.438L5.5 7.217c.355.116.75.196.969.438C6.8 8.022 7 8.466 7 9v2c0 1.112-.907 2-2 2H2v-2h3V9H4a1 1 0 01-.875-1.438L4.375 5H2zm8 0h2c.833 0 1.525.564 1.77 1.053.244.488.23.947.23.947v1h-2V5h-2v6h2V9h-1V7h3v4s.014.459-.23.947C13.525 12.436 12.833 13 12 13h-2s-.459.014-.947-.23C8.564 12.525 8 11.833 8 11V5s-.014-.459.23-.947C8.475 3.564 9.167 3 10 3z", style: { marker: "none" }, color: "#bebebe", overflow: "visible", fill: "#2e3436" }))); return render(rest, ...restArgs); }; const Memo = memo(SvgNetworkCellular3GSymbolic); var network_cellular_3g_symbolic_default = Memo; export { network_cellular_3g_symbolic_default as default };