UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

85 lines (84 loc) 2.74 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgSystemShutdownSymbolic = (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.014", ...props }, /* @__PURE__ */ React.createElement("g", { color: "#000", fontWeight: 400, fontFamily: "sans-serif", fill: "#474747" }, /* @__PURE__ */ React.createElement("path", { d: "M5.04 1.815a1 1 0 00-.546.14 7.009 7.009 0 00-3.254 7.87 7.006 7.006 0 006.75 5.19 7.007 7.007 0 006.766-5.17 7.01 7.01 0 00-3.233-7.88 1 1 0 10-1.007 1.729 4.991 4.991 0 012.308 5.627 4.99 4.99 0 01-4.832 3.693 4.989 4.989 0 01-4.82-3.707 4.992 4.992 0 012.324-5.62 1 1 0 00-.457-1.872z", 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: "M7.984 0A1 1 0 007 1.015v5a1 1 0 102 0v-5A1 1 0 007.984.001z", 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" }, overflow: "visible" })))); return render(rest, ...restArgs); }; const Memo = memo(SvgSystemShutdownSymbolic); var system_shutdown_symbolic_default = Memo; export { system_shutdown_symbolic_default as default };