adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
64 lines (63 loc) • 2.28 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgGoaPanelSymbolic = (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("path", {
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
},
d: "M7.662.008a8.007 8.007 0 00-6.41 3.695 8.009 8.009 0 00.736 9.574 8.006 8.006 0 009.397 1.971 1 1 0 10-.846-1.812 5.993 5.993 0 01-7.049-1.479 5.99 5.99 0 01-.55-7.18A5.99 5.99 0 019.677 2.24 5.991 5.991 0 0114 8a1 1 0 000 .041V9a.994.994 0 01-.5.865.993.993 0 01-1 0A.995.995 0 0112 9V8c0-2.197-1.803-4-4-4S4 5.803 4 8s1.803 4 4 4c1.044 0 1.99-.416 2.705-1.078.222.265.487.498.795.676a3.004 3.004 0 003 0A3.003 3.003 0 0016 9V8A8.008 8.008 0 0010.238.318a7.983 7.983 0 00-2.576-.31zM8 6c1.117 0 2 .884 2 2s-.883 2-2 2c-1.116 0-2-.884-2-2s.884-2 2-2z",
color: "#000",
fontWeight: 400,
fontFamily: "sans-serif",
overflow: "visible",
fill: "#2e3436"
})));
return render(rest, ...restArgs);
};
const Memo = memo(SvgGoaPanelSymbolic);
var goa_panel_symbolic_default = Memo;
export {
goa_panel_symbolic_default as default
};