UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

39 lines (38 loc) 1.26 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgDriveHarddiskUsbSymbolic = (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.5 0h-1l-2 4H7v5H4V7.729A2 2 0 005 6a2 2 0 10-3 1.73V9c0 2 2 2 2 2h3v1.271A2 2 0 006 14a2 2 0 103-1.73V11h3s2 0 2-2V8s1.125-.188 1-1V5c.125-1.125-1-1-1-1h-2c-1.063 0-1 1-1 1v2c0 1 1 1 1 1v1H9V4h1.5z", fill: "#2e3436", fillRule: "evenodd" }))); return render(rest, ...restArgs); }; const Memo = memo(SvgDriveHarddiskUsbSymbolic); var drive_harddisk_usb_symbolic_default = Memo; export { drive_harddisk_usb_symbolic_default as default };