adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
61 lines (60 loc) • 2.23 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgEmojiActivitiesSymbolic = (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 0C3.594 0 0 3.594 0 8c0 4.406 3.594 8 8 8 4.406 0 8-3.594 8-8 0-4.406-3.594-8-8-8zm0 2c.038 0 .075.005.113.006A4.993 4.993 0 009.541 6.61a4.999 4.999 0 004.453 1.283c0 .036.006.07.006.107 0 3.326-2.674 6-6 6-.039 0-.076-.005-.115-.006a4.992 4.992 0 00-1.281-4.46 4.994 4.994 0 00-3.35-1.528 4.992 4.992 0 00-1.248.1C2.006 8.07 2 8.036 2 8c0-3.326 2.674-6 6-6zm1.113.105a5.977 5.977 0 014.782 4.786 3.99 3.99 0 01-3.663-1.002 3.987 3.987 0 01-1.119-3.784zM3.205 9.004a3.99 3.99 0 013.684 4.89 5.976 5.976 0 01-4.784-4.789c.364-.083.734-.12 1.1-.101z",
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"
},
color: "#000",
fontWeight: 400,
fontFamily: "sans-serif",
overflow: "visible",
fill: "#2e3436"
})));
return render(rest, ...restArgs);
};
const Memo = memo(SvgEmojiActivitiesSymbolic);
var emoji_activities_symbolic_default = Memo;
export {
emoji_activities_symbolic_default as default
};