UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

39 lines (38 loc) 1.45 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgSoftwareUpdateAvailableSymbolic = (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 .063L5.75 3.469 2.312 2.313 3.47 5.75.063 8l3.406 2.25-1.156 3.438L5.75 12.53 8 15.937l2.25-3.406 3.438 1.156-1.157-3.437L15.937 8l-3.406-2.25 1.156-3.438L10.25 3.47zm0 4.53l.719.688 2 2c.223.226.331.561.281.875V9h-.875a1.032 1.032 0 01-.844-.281L9 8.437V11H7V8.437l-.281.282A1.036 1.036 0 016 9H5v-.781a1.465 1.465 0 010-.094c-.04-.304.067-.624.281-.844l2-2z", fill: "#474747", fillRule: "evenodd" }))); return render(rest, ...restArgs); }; const Memo = memo(SvgSoftwareUpdateAvailableSymbolic); var software_update_available_symbolic_default = Memo; export { software_update_available_symbolic_default as default };