adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
38 lines (37 loc) • 1.38 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgFaceTiredSymbolic = (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 1zM6.625 6.75A.29.29 0 017 7a.412.412 0 01-.281.438l-2.782.812c-.181.053-.349-.031-.374-.219a.412.412 0 01.28-.437zm2.625 0c.042-.006.08-.013.125 0l2.781.844a.41.41 0 01.281.437c-.025.188-.193.272-.374.219L9.28 7.437A.412.412 0 019 7a.287.287 0 01.25-.25zM4.406 10h7.188c.221 0 .406.223.406.5s-.185.5-.406.5H4.406C4.185 11 4 10.777 4 10.5s.185-.5.406-.5z",
fill: "#474747"
})));
return render(rest, ...restArgs);
};
const Memo = memo(SvgFaceTiredSymbolic);
var face_tired_symbolic_default = Memo;
export {
face_tired_symbolic_default as default
};