UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

86 lines (85 loc) 2.71 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgCallOutgoingSymbolic = (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, fontFamily: "sans-serif", fill: "#2e3436" }, /* @__PURE__ */ React.createElement("path", { d: "M5.006 2c.554 0 1 .446 1 1v3c0 .554-.446 1-1 1h-.711a6.972 6.972 0 004.71 4.71V11c0-.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: "M11 0h-1v.832A1 1 0 0011 2h1.586L8.293 6.293c-.982.942.472 2.396 1.414 1.414L14 3.414V5a1 1 0 001.158 1H16V0z", 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(SvgCallOutgoingSymbolic); var call_outgoing_symbolic_default = Memo; export { call_outgoing_symbolic_default as default };