adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
66 lines (65 loc) • 2.8 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgThunderboltAcquiringSymbolic = (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: "M6 8.5A1.5 1.5 0 014.5 10 1.5 1.5 0 013 8.5 1.5 1.5 0 014.5 7 1.5 1.5 0 016 8.5zm4 0A1.5 1.5 0 018.5 10 1.5 1.5 0 017 8.5 1.5 1.5 0 018.5 7 1.5 1.5 0 0110 8.5zm4 0a1.5 1.5 0 01-1.5 1.5A1.5 1.5 0 0111 8.5 1.5 1.5 0 0112.5 7 1.5 1.5 0 0114 8.5z"
}), /* @__PURE__ */ React.createElement("path", {
d: "M9 .992C7.987.992 6.992 1.83 6.992 3v3h1V3c0-.555.6-1.008 1.008-1.008.403 0 1.008.468 1.008 1.008v3h1V3c0-1.164-.99-2.008-2.008-2.008zm5.504 1.927s-.357-.015-.73.168c-.374.183-.782.658-.782 1.332V6h1V4.419c0-.347.094-.372.22-.434.128-.062.27-.066.27-.066zM2.992 4.561V6h1V4.56zm0 6.439v2.46c0 1.506 1.273 2.55 2.52 2.5a2.68 2.68 0 001.666-.681c.474-.424.814-1.06.814-1.819V11h-1v2.46c0 .47-.189.814-.48 1.075-.292.26-.694.412-1.04.425-.637.026-1.48-.574-1.48-1.5V11zm7.016 0v2c0 .636.266 1.169.654 1.504.388.335.873.488 1.338.488.986 0 1.992-.801 1.992-1.992v-2h-1v2c0 .604-.57.992-.992.992a1.08 1.08 0 01-.684-.244c-.182-.158-.308-.371-.308-.748v-2zM2 0v2H1v1c0 1.108.892 2 2 2h1c1.108 0 2-.892 2-2V2H5V0H4v2H3V0z",
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",
marker: "none"
},
color: "#000",
fontWeight: 400,
fontFamily: "sans-serif",
overflow: "visible",
opacity: 0.5
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgThunderboltAcquiringSymbolic);
var thunderbolt_acquiring_symbolic_default = Memo;
export {
thunderbolt_acquiring_symbolic_default as default
};