adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
84 lines (83 loc) • 2.78 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgDriveMultidiskSymbolic = (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("g", {
color: "#bebebe",
fontWeight: 400,
fill: "#2e3436"
}, /* @__PURE__ */ React.createElement("path", {
d: "M3.195 0A2.215 2.215 0 001 2.201V9.8c0 1.199.993 2.2 2.195 2.2h6.61A2.215 2.215 0 0012 9.799V2.2C12 1.001 11.006 0 9.804 0zM3.5 2h6c.277 0 .5.223.5.5v7c0 .277-.223.5-.5.5h-6a.499.499 0 01-.5-.5v-7c0-.277.223-.5.5-.5z",
style: {
lineHeight: "normal",
textIndent: 0,
textAlign: "start",
textDecorationLine: "none",
textDecorationStyle: "solid",
textDecorationColor: "#000",
textTransform: "none",
isolation: "auto",
mixBlendMode: "normal",
marker: "none"
},
fontFamily: "sans-serif",
overflow: "visible"
}), /* @__PURE__ */ React.createElement("path", {
d: "M13 4v9.813c0 .13-.064.187-.187.187H6.188C6.064 14 6 13.943 6 13.812V13H4v.813C4 15.012 4.986 16 6.188 16h6.625A2.197 2.197 0 0015 13.812V6.189a2.21 2.21 0 00-2-2.188z",
style: {
lineHeight: "normal",
InkscapeFontSpecification: "Sans",
textIndent: 0,
textAlign: "start",
textDecorationLine: "none",
textTransform: "none",
marker: "none"
},
fontFamily: "Sans",
overflow: "visible"
}), /* @__PURE__ */ React.createElement("path", {
d: "M6.496 3.004c-1.371 0-2.515 1.127-2.498 2.498L3.994 8h2.502a2.51 2.51 0 002.498-2.498 2.509 2.509 0 00-2.498-2.498zM6.5 4.5a1 1 0 011 1 1 1 0 01-1 1 1 1 0 01-1-1 1 1 0 011-1z",
style: {
lineHeight: "normal",
textIndent: 0,
textAlign: "start",
textDecorationLine: "none",
textDecorationStyle: "solid",
textDecorationColor: "#000",
textTransform: "none",
isolation: "auto",
mixBlendMode: "normal",
marker: "none"
},
fontFamily: "sans-serif",
overflow: "visible"
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgDriveMultidiskSymbolic);
var drive_multidisk_symbolic_default = Memo;
export {
drive_multidisk_symbolic_default as default
};