adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
86 lines (85 loc) • 2.75 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgCallIncomingSymbolic = (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.029 16.03",
...props
}, /* @__PURE__ */ React.createElement("g", {
color: "#000",
fontWeight: 400,
fontFamily: "sans-serif",
fill: "#2e3436"
}, /* @__PURE__ */ React.createElement("path", {
d: "M5.006 2.03c.554 0 1 .446 1 1v3c0 .554-.446 1-1 1h-.711a6.972 6.972 0 004.71 4.71v-.71c0-.554.447-1 1-1h3c.555 0 1 .446 1 1v1.5a2.5 2.5 0 01-2.5 2.5h-.5c-5.504 0-10-4.495-10-10v-.5a2.5 2.5 0 012.5-2.5z",
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",
marker: "none"
},
overflow: "visible"
}), /* @__PURE__ */ React.createElement("path", {
d: "M12.995 8.034h1v-.832a1 1 0 00-1-1.168h-1.586l4.293-4.293c.982-.942-.472-2.396-1.414-1.414L9.995 4.62V3.034a1 1 0 00-1.158-1h-.842v1L8 8.03z",
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",
marker: "none"
},
overflow: "visible"
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgCallIncomingSymbolic);
var call_incoming_symbolic_default = Memo;
export {
call_incoming_symbolic_default as default
};