UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

65 lines (64 loc) 2.1 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgNetworkTransmitSymbolic = (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", { color: "#000", fontWeight: 400, fontFamily: "Sans", fill: "#474747" }, /* @__PURE__ */ React.createElement("path", { d: "M11 9c.31 0 .615-.09.813-.281L15.406 5 11.75 1.281C11.552 1.091 11.31 1 11 1h-1v1c0 .257.13.529.313.719L11.593 4H7c-.528-.007-1 .472-1 1s.472 1.007 1 1h4.625l-1.219 1.281c-.182.19-.406.462-.406.719v1z", style: { lineHeight: "normal", InkscapeFontSpecification: "Sans", textIndent: 0, textAlign: "start", textDecorationLine: "none", textTransform: "none", marker: "none" }, overflow: "visible" }), /* @__PURE__ */ React.createElement("path", { d: "M5 7c-.31 0-.615.09-.812.281L.594 11l3.656 3.719c.198.19.44.281.75.281h1v-1c0-.257-.13-.529-.312-.719L4.406 12H9c.528.007 1-.472 1-1s-.472-1.007-1-1H4.375l1.219-1.281C5.777 8.529 6 8.257 6 8V7z", style: { lineHeight: "normal", InkscapeFontSpecification: "Sans", textIndent: 0, textAlign: "start", textDecorationLine: "none", textTransform: "none", marker: "none" }, overflow: "visible", opacity: 0.35 })))); return render(rest, ...restArgs); }; const Memo = memo(SvgNetworkTransmitSymbolic); var network_transmit_symbolic_default = Memo; export { network_transmit_symbolic_default as default };