UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

38 lines (37 loc) 1.74 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgFaceGlassesSymbolic = (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 1a6.986 6.986 0 00-6.313 4H4.25a2 2 0 011.719-.969c.566 0 1.072.244 1.437.625.2-.132.413-.156.563-.156.165 0 .394.022.593.156A1.985 1.985 0 0110 4.031 2 2 0 0111.719 5h2.594A6.986 6.986 0 008 1zM5.969 5.031c-.563 0-1 .438-1 1V7c0 .563.437 1 1 1 .562 0 1-.437 1-1v-.969c0-.562-.438-1-1-1zm4.031 0c-.563 0-1 .438-1 1V7c0 .563.437 1 1 1s1-.437 1-1v-.969c0-.562-.437-1-1-1zm-2.031.782c0 .009-.032.021-.031.03.006.063.03.124.03.188V7c0 1.1-.9 2-2 2-1.099 0-2-.9-2-2V6H1.282A7.072 7.072 0 001 8a7 7 0 0014 0 7.07 7.07 0 00-.281-2H12v1c0 1.1-.9 2-2 2s-2-.9-2-2v-.969c0-.042-.003-.083 0-.125a.651.651 0 010-.062.51.51 0 01-.031-.031zM3 10.063c.997.636 4.016.937 5 .937s3.805.03 5-.938v.5c0 .681-1.744 1.407-5 1.407-3.256 0-5-.874-5-1.406z", fill: "#474747" }))); return render(rest, ...restArgs); }; const Memo = memo(SvgFaceGlassesSymbolic); var face_glasses_symbolic_default = Memo; export { face_glasses_symbolic_default as default };