adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
52 lines (51 loc) • 1.85 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgMailReadSymbolic = (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.001",
...props
}, /* @__PURE__ */ React.createElement("path", {
d: "M7.875.001a1 1 0 00-.5.25l-4.906 4a1 1 0 00-.062.031s-.326.298-.657.75c-.223.306-.352.832-.5 1.313a1 1 0 00-.031.031A1 1 0 001 6.94v.03a1 1 0 000 .032 1 1 0 000 .156v7.844a1 1 0 001 1h12a1 1 0 001-1V7.157a1 1 0 000-.156 1 1 0 00-.218-.656 1 1 0 00-.032-.031 5.087 5.087 0 00-1.125-2 1 1 0 00-.03-.032L8.624.252a1 1 0 00-.656-.25 1 1 0 00-.094 0zM8 2.282l4.313 3.532.031.03c.021.026.18.25.344.5L8 9.877 3.313 6.345c.026-.04.035-.087.062-.125.191-.262.319-.414.344-.438l.031-.03zM3 7.376l4.688 3.531.312.22.313-.22L13 7.377V14H3z",
style: {
lineHeight: "normal",
InkscapeFontSpecification: "Sans",
textIndent: 0,
textAlign: "start",
textDecorationLine: "none",
textTransform: "none",
marker: "none"
},
color: "#000",
fontWeight: 400,
fontFamily: "Sans",
overflow: "visible",
opacity: 0.5,
fill: "#474747"
})));
return render(rest, ...restArgs);
};
const Memo = memo(SvgMailReadSymbolic);
var mail_read_symbolic_default = Memo;
export {
mail_read_symbolic_default as default
};