adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
53 lines (52 loc) • 1.75 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgAppletsScreenshooterSymbolic = (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: "M14 0c1.2 0 2 .798 2 2v4h-2V2.25c0-.124-.057-.25-.188-.25H2.188C2.056 2 2 2.126 2 2.25V14c-1.2 0-2-.923-2-2.125V2C0 .798.8 0 2 0z",
style: {
marker: "none"
},
color: "#bebebe",
overflow: "visible"
}), /* @__PURE__ */ React.createElement("path", {
d: "M7.25 6c-.471 0-.743.542-.75 1v1H4c-.469.065-1 .542-1 1v6c0 .458.527 1 1 1h10c.473 0 1-.542 1-1V9c0-.458-.527-1-1-1h-2.5V7c0-.458-.341-1-.813-1zM9 9a3 3 0 110 6 3 3 0 010-6z",
style: {
marker: "none"
},
color: "#bebebe",
overflow: "visible"
}), /* @__PURE__ */ React.createElement("path", {
d: "M11 12a2 2 0 01-2 2 2 2 0 01-2-2 2 2 0 012-2 2 2 0 012 2z"
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgAppletsScreenshooterSymbolic);
var applets_screenshooter_symbolic_default = Memo;
export {
applets_screenshooter_symbolic_default as default
};