adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
50 lines (49 loc) • 1.83 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgUserTrashFullSymbolic = (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.001 16",
...props
}, /* @__PURE__ */ React.createElement("path", {
d: "M12 2v-.969H5V2zm.531-1.969c.49 0 .796.229 1.031.469.236.24.438.559.438 1.031V2h2v2H1V2h2v-.375c.024-.43.17-.752.406-1.031A1.53 1.53 0 014.562.062v-.03h7.969zM4 5H2C.326 7.927.862 10.854 2 13.781 2.435 14.901 2.982 16 4.188 16h8.625c1.205 0 1.776-1.09 2.187-2.219C16.042 10.92 16.599 8.027 15 5h-2c1.721 2.948.985 5.97 0 9H4c-1.096-3.033-1.631-6.05 0-9zm4.969-.016V13H8V4.983zM7 4.984c-1.762 2.223-.83 5.631 0 8.017H6c-.825-2.309-1.84-5.628 0-8.017zm3.969 0c1.817 2.609.856 5.813 0 8.017H10c.865-2.222 1.663-5.47 0-8.017z",
style: {
lineHeight: "normal",
textIndent: 0,
textAlign: "start",
textDecorationLine: "none",
textTransform: "none",
marker: "none"
},
color: "#bebebe",
fontWeight: 400,
fontFamily: "Bitstream Vera Sans",
overflow: "visible",
fill: "#474747"
})));
return render(rest, ...restArgs);
};
const Memo = memo(SvgUserTrashFullSymbolic);
var user_trash_full_symbolic_default = Memo;
export {
user_trash_full_symbolic_default as default
};