adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
75 lines (74 loc) • 2.43 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgMailMarkJunkSymbolic = (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", {
color: "#000",
fontWeight: 400,
fill: "#2e3436"
}, /* @__PURE__ */ React.createElement("path", {
d: "M11.275.074A1 1 0 0010.9 0H5.102a1 1 0 00-.71.295l-4.1 4.1a1 1 0 00-.293.706L0 10.898a1 1 0 00.294.71l4.1 4.1a1 1 0 00.706.293L10.898 16a1 1 0 00.71-.294l4.1-4.1a1 1 0 00.293-.706L16 5.102a1 1 0 00-.294-.71l-4.1-4.1a1 1 0 00-.331-.218zM10.485 2L14 5.515v4.97L10.485 14h-4.97L2 10.485v-4.97L5.515 2z",
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"
},
fontFamily: "sans-serif",
overflow: "visible"
}), /* @__PURE__ */ React.createElement("path", {
d: "M6.994 4h2v3l-.25 2H7.275l-.28-2zm1 5.75a1.25 1.25 0 110 2.5 1.25 1.25 0 010-2.5z",
style: {
lineHeight: "normal",
InkscapeFontSpecification: "Sans",
textIndent: 0,
textAlign: "start",
textDecorationLine: "none",
textTransform: "none",
marker: "none"
},
fontFamily: "Sans",
overflow: "visible"
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgMailMarkJunkSymbolic);
var mail_mark_junk_symbolic_default = Memo;
export {
mail_mark_junk_symbolic_default as default
};