adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
69 lines (68 loc) • 2.18 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgSystemSoftwareInstallSymbolic = (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: "M3 8h10v7.059c0 .492-.472.937-.996.937H4c-.539 0-1-.43-1-1z",
style: {
marker: "none"
},
color: "#bebebe",
overflow: "visible"
}), /* @__PURE__ */ React.createElement("path", {
d: "M6.793 2.969a1 1 0 00-.752.379L3.225 6.807a1 1 0 00-.225.63v1a1 1 0 102 0v-.644L7.592 4.61a1 1 0 00-.799-1.642zm2.213 3.004a1 1 0 00-.144 1.988l2.17.379v.16a1 1 0 102 0v-1a1 1 0 00-.828-.984L9.205 5.99a1 1 0 00-.199-.017z",
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"
},
color: "#000",
fontWeight: 400,
fontFamily: "sans-serif",
overflow: "visible"
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgSystemSoftwareInstallSymbolic);
var system_software_install_symbolic_default = Memo;
export {
system_software_install_symbolic_default as default
};