adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
38 lines (37 loc) • 1.24 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgFaceAngrySymbolic = (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", {
d: "M8 1a7 7 0 100 14A7 7 0 008 1zM4 5.125s.474.839 1.25.844H7V7c0 .556-.667 1-1.5 1S4 7.556 4 7zm8 0V7c0 .556-.667 1-1.5 1S9 7.556 9 7V5.969h1.719C11.495 5.964 12 5.125 12 5.125zM8.031 9c3.256 0 3 .384 3 .762v.266H5V9.74C5 9.39 4.775 9 8.031 9z",
fill: "#474747"
})));
return render(rest, ...restArgs);
};
const Memo = memo(SvgFaceAngrySymbolic);
var face_angry_symbolic_default = Memo;
export {
face_angry_symbolic_default as default
};