adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
121 lines (120 loc) • 3.67 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgMailSendReceiveSymbolic = (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: "M9 7V6c0-.265-.093-.53-.281-.719l-3-3L5.438 2h-.875l-.282.281-3 3a1.015 1.015 0 00-.28.719L1 7h1c.265 0 .53-.093.719-.281L5 4.438l2.281 2.28c.188.189.454.282.72.282h1z",
style: {
lineHeight: "normal",
InkscapeFontSpecification: "'Bitstream Vera Sans'",
textIndent: 0,
textAlign: "start",
textDecorationLine: "none",
textTransform: "none",
marker: "none"
},
color: "#000",
fontWeight: 400,
fontFamily: "Bitstream Vera Sans",
overflow: "visible",
fill: "#474747"
}), /* @__PURE__ */ React.createElement("path", {
d: "M4 4v7h2V4z",
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"
},
color: "#000",
fontWeight: 400,
fontFamily: "sans-serif",
overflow: "visible",
fill: "#474747"
}), /* @__PURE__ */ React.createElement("path", {
d: "M15 8v1c0 .265-.093.53-.281.719l-3 3-.281.281h-.875l-.282-.281-3-3A1.015 1.015 0 017.001 9L7 8h1c.265 0 .53.093.719.281L11 10.562l2.281-2.28c.188-.189.454-.282.72-.282h1z",
style: {
lineHeight: "normal",
InkscapeFontSpecification: "'Bitstream Vera Sans'",
textIndent: 0,
textAlign: "start",
textDecorationLine: "none",
textTransform: "none",
marker: "none"
},
color: "#000",
fontWeight: 400,
fontFamily: "Bitstream Vera Sans",
overflow: "visible",
fill: "#474747"
}), /* @__PURE__ */ React.createElement("path", {
d: "M10 4v7h2V4z",
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"
},
color: "#000",
fontWeight: 400,
fontFamily: "sans-serif",
overflow: "visible",
fill: "#474747"
})));
return render(rest, ...restArgs);
};
const Memo = memo(SvgMailSendReceiveSymbolic);
var mail_send_receive_symbolic_default = Memo;
export {
mail_send_receive_symbolic_default as default
};