adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
44 lines (43 loc) • 1.59 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgSystemFileManagerSymbolic = (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: "M3.187 0C1.982 0 1 1.018 1 2.219V13.78C1 14.982 1.982 16 3.187 16h9.625C14.017 16 15 14.982 15 13.781V2.22C15 1.018 14.017 0 12.812 0zM3 3h10v11H3zm1 1v4h8.031V4zm2.344 1.438a.5.5 0 01.062 0 .5.5 0 01.594.5V6h2v-.063a.5.5 0 111 0V6c0 .545-.455 1-1 1H7c-.546 0-1-.455-1-1v-.063a.5.5 0 01.344-.5zM4.03 9v4h8.031V9zm2.313 1.438a.5.5 0 01.062 0 .5.5 0 01.594.5V11h2v-.063a.5.5 0 111 0V11c0 .545-.455 1-1 1H7c-.546 0-1-.455-1-1v-.063a.5.5 0 01.344-.5z",
style: {
marker: "none"
},
color: "#000",
overflow: "visible",
fill: "#474747",
fillRule: "evenodd"
})));
return render(rest, ...restArgs);
};
const Memo = memo(SvgSystemFileManagerSymbolic);
var system_file_manager_symbolic_default = Memo;
export {
system_file_manager_symbolic_default as default
};