UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

43 lines (42 loc) 1.57 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgDialogQuestionSymbolic = (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: "M8 .031c-.4 0-.815.16-1.125.469L.5 6.875c-.62.62-.62 1.63 0 2.25L6.875 15.5c.62.62 1.63.62 2.25 0L15.5 9.125c.62-.62.62-1.63 0-2.25L9.125.5A1.604 1.604 0 008 .031zm.152 2.975a3.001 3.001 0 011.97.873 3.006 3.006 0 01.65 3.27A2.998 2.998 0 019 8.82V10H7V8a1 1 0 011-1c.407 0 .768-.24.924-.617a.994.994 0 00-.217-1.09.994.994 0 00-1.09-.217A.994.994 0 007 6H5c0-1.21.733-2.308 1.852-2.771a2.98 2.98 0 011.3-.223zM8 11a1 1 0 011 1 1 1 0 01-1 1 1 1 0 01-1-1 1 1 0 011-1z", style: { marker: "none" }, color: "#bebebe", overflow: "visible", fill: "#2e3436" }))); return render(rest, ...restArgs); }; const Memo = memo(SvgDialogQuestionSymbolic); var dialog_question_symbolic_default = Memo; export { dialog_question_symbolic_default as default };