UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

72 lines (71 loc) 3.85 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgSemiStarredSymbolic = (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", fill: "#2e3436" }, /* @__PURE__ */ React.createElement("path", { d: "M8 1.5c-.927-.003-1.436 3.134-2.188 3.656-.751.523-4.022.026-4.312.875-.29.85 2.655 2.274 2.937 3.125.283.851-1.247 3.69-.5 4.219.748.528 3.105-1.722 4.032-1.719h.03z", style: { marker: "none" }, overflow: "visible" }), /* @__PURE__ */ React.createElement("path", { d: "M7.957.129a1.55 1.55 0 00-.98.404c-.223.199-.369.41-.498.627-.26.433-.444.907-.623 1.375-.18.469-.347.93-.496 1.268-.085.191-.068.167-.114.236l-3.418-.01a1 1 0 00-.957.701c-.24.767.102 1.262.373 1.684.272.422.61.815.953 1.2.343.383.69.752.95 1.056.26.304.42.612.386.51-.088-.264-.017.014-.117.36-.1.347-.266.805-.43 1.274-.162.47-.324.942-.402 1.434-.039.246-.064.5-.01.805.054.304.238.71.598.95.355.239.746.264 1.04.23.295-.036.54-.123.776-.223.474-.202.924-.48 1.367-.76.444-.28.877-.565 1.22-.76.34-.194.657-.244.464-.244-.225 0 .094.043.426.24.332.197.752.484 1.183.768.432.283.87.566 1.332.771.232.103.471.191.768.227.297.035.708 0 1.06-.256a1 1 0 00.176-.166c.432-.517.508-1.257.385-1.768-.123-.51-.346-.896-.533-1.26-.373-.726-.592-1.206-.4-1.75a1 1 0 00.004-.01c-.063.185.08-.101.355-.367.274-.265.65-.594 1.025-.95.375-.358.752-.738 1.05-1.198.297-.46.57-1.122.314-1.83a1 1 0 00-.942-.66h-3.617c-.02-.032-.02-.025-.043-.07-.14-.274-.315-.744-.494-1.235-.179-.49-.36-1.001-.602-1.465A2.714 2.714 0 009.018.59C8.803.369 8.432.117 7.958.127zm-.015 2.63c.09.224.17.397.265.66.178.49.36 1 .598 1.464.12.231.249.456.459.677.21.222.568.48 1.045.48h2.346c-.085.087-.12.149-.215.24-.33.314-.702.638-1.035.96-.332.321-.652.562-.856 1.156-.478 1.368.121 2.57.508 3.323.015.03.014.035.03.064-.125-.077-.207-.113-.339-.2-.408-.268-.84-.565-1.263-.816-.423-.25-.762-.518-1.442-.52a1 1 0 00-.002 0c-.668 0-1.023.26-1.457.506-.433.247-.877.542-1.297.807-.203.128-.342.192-.523.295.044-.142.057-.228.111-.383.154-.442.33-.915.463-1.377.132-.462.321-.867.094-1.549-.179-.535-.458-.814-.766-1.173-.308-.36-.657-.733-.976-1.09-.084-.093-.122-.158-.2-.248l2.24.01a1 1 0 00.575-.18c.55-.384.687-.808.883-1.25.195-.442.366-.92.535-1.361.078-.203.143-.317.219-.49z", 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" }, fontWeight: 400, fontFamily: "sans-serif", overflow: "visible" })))); return render(rest, ...restArgs); }; const Memo = memo(SvgSemiStarredSymbolic); var semi_starred_symbolic_default = Memo; export { semi_starred_symbolic_default as default };