adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
98 lines (97 loc) • 3.15 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgBatteryFullChargedSymbolic = (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: "#2e3436"
}, /* @__PURE__ */ React.createElement("path", {
d: "M5.469.04c-.489 0-.794.213-1.03.452C4.204.732 4 1.046 4 1.52v.501H2v13.916l12.002.003V2.02H12v-.415a1.616 1.616 0 00-.418-1.012c-.236-.278-.62-.583-1.197-.55l.054-.003zm.529 1.995l4.006.002v1.98h2v9.924H3.996V4.018h2.002z",
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",
whiteSpace: "normal",
shapePadding: 0,
isolation: "auto",
mixBlendMode: "normal",
solidColor: "#000",
solidOpacity: 1,
marker: "none"
},
color: "#bebebe",
fontWeight: 400,
fontFamily: "sans-serif",
overflow: "visible",
opacity: 0.5
}), /* @__PURE__ */ React.createElement("path", {
d: "M8.957 5.002a1 1 0 00-.664.291l-3 3A1 1 0 006 10h.984l.17.002-.98 1.434a1 1 0 001.533 1.271l3-3A1 1 0 0010 8H8.87l.962-1.445a1 1 0 00-.875-1.553z",
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",
whiteSpace: "normal",
shapePadding: 0,
isolation: "auto",
mixBlendMode: "normal",
solidColor: "#000",
solidOpacity: 1,
marker: "none"
},
color: "#bebebe",
fontWeight: 400,
fontFamily: "sans-serif",
overflow: "visible"
}), /* @__PURE__ */ React.createElement("path", {
d: "M5 9h1v1H5zm4-4h1v1H9zm-3 7h1v1H6zm4-4h1v1h-1z"
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgBatteryFullChargedSymbolic);
var battery_full_charged_symbolic_default = Memo;
export {
battery_full_charged_symbolic_default as default
};