UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

65 lines (64 loc) 3.61 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgNonStarredSymbolic = (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: "M7.974.126c-.477.01-.848.268-1.06.495a2.588 2.588 0 00-.447.683c-.225.464-.384.97-.543 1.452-.158.482-.318.941-.45 1.2-.02.041-.017.033-.035.062H1.842a.982 1.018 90 00-.975.698c-.233.743.1 1.226.37 1.647.27.422.609.817.952 1.203.343.385.688.756.949 1.061.26.306.422.608.392.52-.081-.244-.015.043-.116.392-.1.35-.27.807-.432 1.276-.163.468-.324.941-.4 1.427a2.255 2.255 0 00-.009.788c.053.296.227.69.592.934.36.242.772.27 1.074.235.303-.036.547-.124.786-.226.478-.203.928-.483 1.373-.764.444-.281.876-.565 1.217-.76.34-.193.665-.234.443-.235-.25 0 .072.036.403.233.331.196.751.483 1.183.767.432.284.868.566 1.335.773.233.104.475.195.78.232.305.037.735 0 1.091-.263a.982 1.018 90 00.117-.1c.513-.514.556-1.215.473-1.73-.082-.514-.266-.973-.442-1.414-.176-.44-.348-.86-.442-1.185-.093-.324-.073-.53-.076-.522-.053.159.088-.112.36-.377.275-.268.652-.598 1.026-.957.374-.36.75-.743 1.045-1.202.295-.46.56-1.098.31-1.79a.982 1.018 90 00-.962-.66h-3.595c-.02-.032-.02-.024-.043-.067-.141-.275-.317-.742-.495-1.23-.179-.488-.36-.997-.6-1.456-.12-.229-.25-.45-.466-.67-.215-.22-.593-.479-1.086-.469zm.049 2.798c.063.165.116.27.182.45.178.487.357.995.594 1.454.118.229.246.449.456.669.21.22.576.485 1.071.485h2.366c-.1.105-.148.184-.263.294-.33.317-.702.642-1.035.966-.333.324-.654.57-.852 1.153a.982 1.018 90 00-.002 0c-.207.618-.087 1.164.054 1.654s.338.95.504 1.365c.072.18.09.283.144.439-.16-.097-.275-.15-.453-.267-.408-.268-.839-.566-1.263-.818-.424-.251-.76-.522-1.465-.523-.693 0-1.048.26-1.482.509-.435.247-.879.541-1.299.807-.188.12-.314.176-.484.274.046-.147.06-.24.116-.4.154-.443.332-.916.463-1.375.132-.46.314-.859.093-1.52-.174-.521-.45-.805-.758-1.166-.307-.36-.658-.735-.977-1.094-.102-.114-.151-.194-.243-.303h2.26a.982 1.018 90 00.02 0c.463-.01.84-.252 1.063-.477a2.58 2.58 0 00.473-.689c.236-.469.4-.979.56-1.465.056-.171.102-.27.157-.427z", 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", whiteSpace: "normal", shapePadding: 0, isolation: "auto", mixBlendMode: "normal", solidColor: "#000", solidOpacity: 1, marker: "none" }, color: "#000", fontWeight: 400, fontFamily: "sans-serif", overflow: "visible", fill: "#2e3436" }))); return render(rest, ...restArgs); }; const Memo = memo(SvgNonStarredSymbolic); var non_starred_symbolic_default = Memo; export { non_starred_symbolic_default as default };