adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
41 lines (40 loc) • 1.73 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgFaceKissSymbolic = (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: "M8 1a7 7 0 100 14A7 7 0 008 1zM5.531 5C6.266 5 7 5.225 7 6.092c-2.56-.604-2.418 1.688-3 .22C3.68 5.505 4.797 5 5.531 5zm4.938 0c.734 0 1.704.461 1.531 1.313-.317 1.556-.528-.958-3-.221C9 5.225 9.734 5 10.469 5zM7 8c.41-.01.75.134 1.031.344.282-.21.652-.357 1.063-.344.631.02.906.76.906 1.187 0 .775.475.766 1 .829-.634.15-.987 1.224-.984 1.765.005.972-.93 1.256-2.016 1.25-1.085-.004-1.987-.251-1.984-1.234 0-.408-.353-1.59-1.032-1.766.68-.093 1.016-.25 1.016-.86 0-.808.529-1.16 1-1.171z"
}), /* @__PURE__ */ React.createElement("path", {
d: "M9 10.274c-.17.08-.32.16-.322.272-.018.27-.374.481-.672.48-.298-.001-.594-.21-.594-.48 0-.112-.111-.19-.272-.272.53-.395 1.253-.338 1.86 0z"
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgFaceKissSymbolic);
var face_kiss_symbolic_default = Memo;
export {
face_kiss_symbolic_default as default
};