adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
107 lines (106 loc) • 3.21 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgEyeOpenNegativeFilledSymbolic = (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",
id: "svg7384",
...props
}, /* @__PURE__ */ React.createElement("title", {
id: "title9167"
}, "Gnome Symbolic Icon Theme"), /* @__PURE__ */ React.createElement("defs", {
id: "defs7386"
}, /* @__PURE__ */ React.createElement("linearGradient", {
id: "linearGradient7212"
}, /* @__PURE__ */ React.createElement("stop", {
style: {
stopColor: "#000000",
stopOpacity: 1
},
offset: 0,
id: "stop7214"
}))), /* @__PURE__ */ React.createElement("g", {
transform: "translate(-341.0002,-13.000323)",
style: {
display: "inline"
},
id: "layer9"
}), /* @__PURE__ */ React.createElement("g", {
transform: "translate(-100,-380.00032)",
id: "layer1"
}), /* @__PURE__ */ React.createElement("g", {
transform: "translate(-100,-380.00032)",
style: {
display: "inline"
},
id: "layer10"
}, /* @__PURE__ */ React.createElement("path", {
d: "m 108,382 a 8,8 0 0 0 -7.73828,6.00977 A 8,8 0 0 0 108,394 8,8 0 0 0 115.73828,387.99023 8,8 0 0 0 108,382 Z m 0,2 a 4,4 0 0 1 4,4 4,4 0 0 1 -4,4 4,4 0 0 1 -4,-4 4,4 0 0 1 4,-4 z",
id: "path2314",
style: {
opacity: 1,
vectorEffect: "none",
fill: "#2e3436",
fillOpacity: 1,
stroke: "none",
strokeWidth: 1.5,
strokeLinecap: "butt",
strokeLinejoin: "round",
strokeMiterlimit: 4,
strokeDasharray: "none",
strokeDashoffset: 0,
strokeOpacity: 1,
marker: "none",
markerStart: "none",
markerMid: "none",
markerEnd: "none",
paintOrder: "normal"
}
}), /* @__PURE__ */ React.createElement("path", {
id: "path2318",
d: "m 110,388.00003 a 2,2 0 0 1 -2,2 2,2 0 0 1 -2,-2 2,2 0 0 1 2,-2 2,2 0 0 1 2,2 z",
style: {
vectorEffect: "none",
fill: "#2e3436",
fillOpacity: 1,
stroke: "none",
strokeWidth: 1,
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: 4,
strokeDasharray: "none",
strokeOpacity: 1
}
})), /* @__PURE__ */ React.createElement("g", {
transform: "translate(-100,-380.00032)",
id: "g6387"
}), /* @__PURE__ */ React.createElement("g", {
transform: "translate(-100,-380.00032)",
id: "layer11"
})));
return render(rest, ...restArgs);
};
const Memo = memo(SvgEyeOpenNegativeFilledSymbolic);
var eye_open_negative_filled_symbolic_default = Memo;
export {
eye_open_negative_filled_symbolic_default as default
};