adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
62 lines (61 loc) • 2.17 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgEmojiFoodSymbolic = (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.001 16.014",
...props
}, /* @__PURE__ */ React.createElement("path", {
d: "M.984 0A1 1 0 000 1.015v4s.007.844.574 1.6C1.022 7.21 1.832 7.734 3 7.928v1.086a1 1 0 00-1 1v5a1 1 0 001 1h2a1 1 0 001-1v-5a1 1 0 00-1-1V7.928c1.168-.195 1.978-.717 2.426-1.314.567-.756.574-1.6.574-1.6v-4a1 1 0 10-2 0v3.5a.5.5 0 01-1 0v-3.5A1 1 0 003.984.001 1 1 0 003 1.014v3.5a.5.5 0 01-1 0v-3.5A1 1 0 00.984.001zM13.97.014a1.002 1.002 0 00-.677.293c-1.736 1.736-2.503 4.161-2.898 6.137C10 8.419 10 10.014 10 10.014a1 1 0 001 1h1v4a1 1 0 001 1h1a1 1 0 001-1v-14a1 1 0 00-1.03-1z",
style: {
lineHeight: "normal",
fontVariantLigatures: "normal",
fontVariantPosition: "normal",
fontVariantCaps: "normal",
fontVariantNumeric: "normal",
fontVariantAlternates: "normal",
fontFeatureSettings: "normal",
textIndent: 0,
textAlign: "start",
textDecorationLine: "none",
textDecorationStyle: "solid",
textDecorationColor: "#000",
textTransform: "none",
textOrientation: "mixed",
shapePadding: 0,
isolation: "auto",
mixBlendMode: "normal"
},
overflow: "visible",
color: "#000",
fontWeight: 400,
fontFamily: "sans-serif",
fill: "#2e3436",
fillRule: "evenodd"
})));
return render(rest, ...restArgs);
};
const Memo = memo(SvgEmojiFoodSymbolic);
var emoji_food_symbolic_default = Memo;
export {
emoji_food_symbolic_default as default
};