adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
106 lines (105 loc) • 4.11 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgPowerProfileBalancedSymbolic = (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", {
id: "svg7384",
style: {
enableBackground: "new"
},
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 16 16",
...props
}, /* @__PURE__ */ React.createElement("title", {
id: "title8473"
}, "Gnome Symbolic Icons"), /* @__PURE__ */ React.createElement("defs", {
id: "defs7386"
}), /* @__PURE__ */ React.createElement("g", {
id: "layer10",
transform: "translate(-272,-72)"
}), /* @__PURE__ */ React.createElement("g", {
id: "layer1",
transform: "translate(-272,-8)"
}, /* @__PURE__ */ React.createElement("path", {
d: "m 280,9 c -2.049,0 -4.09825,0.779891 -5.65625,2.337891 -3.116,3.116 -3.116,8.1965 0,11.3125 a 1,1 0 0 0 1.67969,-0.972657 l 0.79492,-0.794922 -0.70703,-0.707031 -0.69336,0.69336 a 5.984,5.984 0 0 1 -1.40235,-3.375 H 275 v -1 h -0.98438 a 5.984,5.984 0 0 1 1.40235,-3.375 l 0.69336,0.693359 0.70703,-0.707031 -0.69141,-0.691407 a 5.984,5.984 0 0 1 3.3086,-1.398437 c -0.0581,0.105552 -0.0984,0.225263 -0.0977,0.363281 l -0.041,3.744141 A 2,2 0 0 0 278,16.994141 a 2,2 0 0 0 2,2 2,2 0 0 0 2,-2 2,2 0 0 0 -1.19922,-1.833985 l 0.041,-3.765625 c 0.003,-0.12843 -0.037,-0.247738 -0.0957,-0.359375 a 5.984,5.984 0 0 1 3.12891,1.376953 l -0.69141,0.69336 0.70703,0.707031 0.69141,-0.693359 a 5.984,5.984 0 0 1 1.40235,3.375 H 285 v 1 h 0.98438 a 5.984,5.984 0 0 1 -1.40235,3.375 l -0.69336,-0.69336 -0.70703,0.707031 0.79688,0.796876 a 1,1 0 0 0 1.67773,0.970703 c 3.116,-3.116 3.116,-8.1965 0,-11.3125 A 7.975,7.975 0 0 0 280,9 Z",
id: "path2-36",
style: {
lineHeight: "normal",
fontVariantLigatures: "normal",
fontVariantPosition: "normal",
fontVariantCaps: "normal",
fontVariantNumeric: "normal",
fontVariantAlternates: "normal",
fontFeatureSettings: "normal",
textIndent: 0,
textAlign: "start",
textDecoration: "none",
textDecorationLine: "none",
textDecorationStyle: "solid",
textDecorationColor: "#000000",
textTransform: "none",
textOrientation: "mixed",
whiteSpace: "normal",
shapePadding: 0,
display: "inline",
isolation: "auto",
mixBlendMode: "normal",
solidColor: "#000000",
solidOpacity: 1,
fill: "#2e3436",
stroke: "none",
marker: "none"
}
})), /* @__PURE__ */ React.createElement("g", {
id: "layer11",
transform: "translate(-272,-72)"
}), /* @__PURE__ */ React.createElement("g", {
id: "layer7",
transform: "translate(-272,-8)"
}), /* @__PURE__ */ React.createElement("g", {
id: "layer6",
transform: "translate(-272,-8)"
}), /* @__PURE__ */ React.createElement("g", {
id: "layer5",
transform: "translate(-272,-8)"
}), /* @__PURE__ */ React.createElement("g", {
id: "layer9",
transform: "translate(-272,-8)"
}), /* @__PURE__ */ React.createElement("g", {
id: "layer2",
transform: "translate(-272,-8)"
}), /* @__PURE__ */ React.createElement("g", {
id: "layer8",
transform: "translate(-272,-8)"
}), /* @__PURE__ */ React.createElement("g", {
id: "layer3",
transform: "translate(-272,-8)"
}), /* @__PURE__ */ React.createElement("g", {
id: "layer4",
transform: "translate(-272,-8)"
})));
return render(rest, ...restArgs);
};
const Memo = memo(SvgPowerProfileBalancedSymbolic);
var power_profile_balanced_symbolic_default = Memo;
export {
power_profile_balanced_symbolic_default as default
};