adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
62 lines (61 loc) • 2 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgUserBookmarksSymbolic = (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: "M5.525 0C4.433 0 3.61.68 3.295 1.295c-.314.615-.3 1.205-.3 1.205v13.117l5-2.5 4.997 2.5.01-7.617h-.004l-.004-5.5s.014-.584-.293-1.197C12.394.689 11.577 0 10.494 0zm0 2h4.97c.416 0 .349.06.417.197a.956.956 0 01.082.303l.004 7.5-.002 2.383-3.002-1.5-3 1.5V2.5s.013-.16.082-.295c.069-.134.01-.205.45-.205z",
style: {
lineHeight: "normal",
fontVariantLigatures: "normal",
fontVariantPosition: "normal",
fontVariantCaps: "normal",
fontVariantNumeric: "normal",
fontVariantAlternates: "normal",
fontFeatureSettings: "normal",
textIndent: 0,
textAlign: "start",
textDecorationLine: "none",
textDecorationStyle: "solid",
textDecorationColor: "#000",
textTransform: "none",
textOrientation: "mixed",
shapePadding: 0,
isolation: "auto",
mixBlendMode: "normal"
},
color: "#000",
fontWeight: 400,
fontFamily: "sans-serif",
overflow: "visible",
fill: "#2e3436",
fillRule: "evenodd"
})));
return render(rest, ...restArgs);
};
const Memo = memo(SvgUserBookmarksSymbolic);
var user_bookmarks_symbolic_default = Memo;
export {
user_bookmarks_symbolic_default as default
};