adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
58 lines (57 loc) • 1.96 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgNetworkVpnAcquiringSymbolic = (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: "#474747"
}, /* @__PURE__ */ React.createElement("path", {
d: "M8 1C6.355 1 5 2.355 5 4v1H4v1.01h8V5h-1V4c0-1.645-1.355-3-3-3zm0 2c.564 0 1 .436 1 1v1H7V4c0-.564.436-1 1-1zm-4 8v1.01h3V13H2v2h12v-2H9v-.99h3V11z",
style: {
lineHeight: "normal",
textIndent: 0,
textAlign: "start",
textDecorationLine: "none",
textDecorationStyle: "solid",
textDecorationColor: "#000",
textTransform: "none",
isolation: "auto",
mixBlendMode: "normal",
marker: "none"
},
color: "#bebebe",
fontWeight: 400,
fontFamily: "sans-serif",
overflow: "visible",
opacity: 0.5
}), /* @__PURE__ */ React.createElement("path", {
d: "M5 8.5A1.5 1.5 0 013.5 10 1.5 1.5 0 012 8.5 1.5 1.5 0 013.5 7 1.5 1.5 0 015 8.5zm4 0A1.5 1.5 0 017.5 10 1.5 1.5 0 016 8.5 1.5 1.5 0 017.5 7 1.5 1.5 0 019 8.5zm4 0a1.5 1.5 0 01-1.5 1.5A1.5 1.5 0 0110 8.5 1.5 1.5 0 0111.5 7 1.5 1.5 0 0113 8.5z"
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgNetworkVpnAcquiringSymbolic);
var network_vpn_acquiring_symbolic_default = Memo;
export {
network_vpn_acquiring_symbolic_default as default
};