UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

76 lines (75 loc) 2.49 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgMailMarkImportantSymbolic = (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: "M1.78 1.72a1 1 0 00-.406 1.78l5 4L7 8l.625-.5 5-4a1 1 0 10-1.25-1.562L7 5.438l-4.375-3.5a1 1 0 00-.843-.219z", style: { lineHeight: "normal", InkscapeFontSpecification: "'Bitstream Vera Sans'", textIndent: 0, textAlign: "start", textDecorationLine: "none", textTransform: "none", marker: "none" }, fontWeight: 400, overflow: "visible", color: "#000", fontFamily: "Bitstream Vera Sans", fill: "#2e3436" }), /* @__PURE__ */ React.createElement("path", { d: "M.813 1A1.034 1.034 0 000 2v9c0 .524.477 1 1 1h6v-2H2V3h10v4h2V2c0-.523-.476-1-1-1H1a1.478 1.478 0 00-.094 0 1.478 1.478 0 00-.093 0z", style: { lineHeight: "normal", InkscapeFontSpecification: "'Bitstream Vera Sans'", textIndent: 0, textAlign: "start", textDecorationLine: "none", textTransform: "none", marker: "none" }, fontWeight: 400, overflow: "visible", color: "#000", fontFamily: "Bitstream Vera Sans", fill: "#2e3436" }), /* @__PURE__ */ React.createElement("path", { className: "warning", d: "M8.87 8a.863.863 0 00-.876.875v6.25c0 .492.383.875.875.875h6.25a.863.863 0 00.875-.875v-6.25A.863.863 0 0015.12 8zm2.124 1h2v2.5s0 .5-.5.5h-1c-.5 0-.5-.5-.5-.5zm.5 4h1c.277 0 .5.223.5.5v1c0 .277-.223.5-.5.5h-1a.499.499 0 01-.5-.5v-1c0-.277.223-.5.5-.5z", style: { marker: "none" }, overflow: "visible", color: "#bebebe", fill: "#f57900" }))); return render(rest, ...restArgs); }; const Memo = memo(SvgMailMarkImportantSymbolic); var mail_mark_important_symbolic_default = Memo; export { mail_mark_important_symbolic_default as default };