UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

53 lines (52 loc) 2.88 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgSystemHelpSymbolic = (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", { fill: "#474747" }, /* @__PURE__ */ React.createElement("path", { d: "M1.969 0A1.964 1.964 0 000 1.969V14.03C0 15.122.878 16 1.969 16H14c.554 0 1-.446 1-1V4c0-.554-.446-1-1-1H2c-.554 0-1-.446-1-1s.446-1 1-1h12c0-.559-.441-1-1-1zM8 4.063A4.936 4.936 0 0112.938 9 4.936 4.936 0 018 13.938 4.936 4.936 0 013.062 9 4.936 4.936 0 018 4.062zm0 1c-.637 0-1.22.174-1.75.437L6.969 7c.313-.163.656-.281 1.031-.281.375 0 .718.118 1.031.281l.719-1.5c-.53-.263-1.113-.438-1.75-.438zM4.5 7.25c-.264.53-.438 1.112-.438 1.75 0 .648.166 1.245.438 1.781l1.5-.75c-.163-.313-.281-.655-.281-1.031 0-.361.099-.696.25-1zm7.031 0l-1.5.75c.151.304.25.639.25 1 0 .376-.118.718-.281 1.031l1.5.75a3.915 3.915 0 00.031-3.531zM8 7.719c-.717 0-1.281.562-1.281 1.281 0 .719.564 1.281 1.281 1.281S9.281 9.72 9.281 9c0-.719-.564-1.281-1.281-1.281zM9.031 11c-.313.163-.656.281-1.031.281a2.24 2.24 0 01-1-.25l-.75 1.5c.527.26 1.118.406 1.75.406.637 0 1.22-.174 1.75-.437z", style: { marker: "none" }, color: "#000", overflow: "visible" }), /* @__PURE__ */ React.createElement("path", { d: "M8 5.031c-.642 0-1.245.137-1.781.407L6.96 6.97c.39-.179.549-.212 1.042-.246.547-.002.72.135 1.027.233l.72-1.52A3.807 3.807 0 008 5.032zM4.437 7.25A4.01 4.01 0 004 9.031c0 .66.193 1.266.469 1.813l1.527-.776c-.158-.28-.237-.496-.28-1.057.043-.497.062-.47.23-.988zm7.125 0l-1.496.745c.15.37.198.481.223 1.009-.006.23.015.53-.267 1.085l1.51.755a3.99 3.99 0 00.437-1.813c0-.645-.141-1.242-.407-1.781zm-3.534 4.04c-.475-.04-.618-.03-1.012-.234l-.797 1.569c.536.27 1.139.437 1.781.437.642 0 1.214-.167 1.75-.437l-.746-1.567c-.396.195-.433.174-.976.231z", style: { marker: "none" }, color: "#bebebe", overflow: "visible" }), /* @__PURE__ */ React.createElement("path", { d: "M9.29 9.008a1.283 1.28 0 01-1.282 1.28 1.283 1.28 0 01-1.284-1.28A1.283 1.28 0 018.008 7.73 1.283 1.28 0 019.29 9.01z" })))); return render(rest, ...restArgs); }; const Memo = memo(SvgSystemHelpSymbolic); var system_help_symbolic_default = Memo; export { system_help_symbolic_default as default };