UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

65 lines (64 loc) 2.34 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgEmblemSynchronizingSymbolic = (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", { fontWeight: 400, fontFamily: "Sans", fill: "#474747" }, /* @__PURE__ */ React.createElement("path", { d: "M14.902 2a1.047 1.047 0 00-.125.032c-.447.1-.793.542-.782 1v1.687C14 6.032 14 6.032 12.433 6.032h-1.438c-.523 0-1 .476-1 1a1 1 0 000 .218v.782h6v-5a.979.979 0 000-.188v-.812h-.812A1.002 1.002 0 0014.902 2zM.005 8v5a.979.979 0 000 .188V14h.812a.99.99 0 00.281.031c.043-.008.084-.018.125-.031.447-.1.793-.542.782-1v-1.688C2 10 2 10 3.567 10h1.438c.523 0 1-.476 1-1a1 1 0 000-.219V8z", style: { lineHeight: "normal", InkscapeFontSpecification: "Sans", textIndent: 0, textAlign: "start", textDecorationLine: "none", textTransform: "none", marker: "none" }, color: "#bebebe", overflow: "visible" }), /* @__PURE__ */ React.createElement("path", { d: "M8 1C4.847 1 2.18 3.126 1.312 6h2.094A5.013 5.013 0 018 3a5.013 5.013 0 014.594 3h2.094C13.819 3.126 11.152 1 8 1zm-6.688 9c.869 2.874 3.535 5 6.688 5 3.153 0 5.82-2.126 6.688-5h-2.094A5.013 5.013 0 018 13a5.013 5.013 0 01-4.594-3z", style: { lineHeight: "normal", InkscapeFontSpecification: "Sans", textIndent: 0, textAlign: "start", textDecorationLine: "none", textTransform: "none", marker: "none" }, color: "#000", overflow: "visible" })))); return render(rest, ...restArgs); }; const Memo = memo(SvgEmblemSynchronizingSymbolic); var emblem_synchronizing_symbolic_default = Memo; export { emblem_synchronizing_symbolic_default as default };