adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
51 lines (50 loc) • 1.88 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgPreferencesDesktopScreensaverSymbolic = (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: "M12.109 5c.62.75.995 1.71.995 2.76a4.344 4.344 0 01-4.344 4.344c-1.05 0-2.01-.376-2.76-.995A5.055 5.055 0 0010.932 15 5.068 5.068 0 0016 9.932 5.055 5.055 0 0012.109 5zM6.511 1.79c.4 0 .721.322.721.721a.72.72 0 01-.72.721.72.72 0 01-.722-.72c0-.4.322-.722.721-.722zm4 1.023a.697.697 0 110 1.398.697.697 0 01-.699-.7c0-.387.312-.698.7-.698zm-3 1.977c.4 0 .721.322.721.721a.72.72 0 01-.72.721.72.72 0 01-.722-.72c0-.4.322-.722.721-.722z",
style: {
marker: "none"
},
color: "#bebebe",
overflow: "visible"
}), /* @__PURE__ */ React.createElement("path", {
d: "M3.505 7.505L2.76 5.25.505 4.505 2.76 3.76l.745-2.255.745 2.255 2.255.745-2.255.745z",
style: {
marker: "none"
},
color: "#000",
overflow: "visible"
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgPreferencesDesktopScreensaverSymbolic);
var preferences_desktop_screensaver_symbolic_default = Memo;
export {
preferences_desktop_screensaver_symbolic_default as default
};