adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
92 lines (91 loc) • 3.55 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgAddressBookNewSymbolic = (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", {
fill: "#474747"
}, /* @__PURE__ */ React.createElement("path", {
d: "M3 1C1 1 1 3 1 3h8V1zm9 6v7H1s0 2 2 2h9s.459.014.947-.23C13.436 15.525 14 14.833 14 14V7z",
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",
fillRule: "evenodd"
}), /* @__PURE__ */ React.createElement("path", {
d: "M.5 4h2a.499.499 0 110 1h-2a.499.499 0 110-1zm0 2h2a.499.499 0 110 1h-2a.499.499 0 110-1zm0 2h2a.499.499 0 110 1h-2a.499.499 0 110-1zm0 2h2a.499.499 0 110 1h-2a.499.499 0 110-1zm0 2h2a.499.499 0 110 1h-2a.499.499 0 110-1z"
}), /* @__PURE__ */ React.createElement("path", {
d: "M7.285 5.004A3.506 3.506 0 004.027 8.94 3.506 3.506 0 007.515 12a5.68 5.68 0 001.644-.276l-.316-.949S8.137 11 7.512 11H7.51a2.494 2.494 0 01-2.49-2.186 2.495 2.495 0 011.867-2.738 2.797 2.797 0 011.808.164c.526.241.89.63 1.004 1.059.124.464.087.97-.084 1.275-.098.176-.403.354-.615.426v-.5C9 7.677 8.323 7 7.5 7 6.678 7 6 7.677 6 8.5c0 .822.678 1.5 1.5 1.5.176 0 .343-.037.5-.094v.045l.45.047c.941.096 1.692-.317 2.038-.936.347-.618.355-1.357.178-2.021-.208-.784-.82-1.372-1.554-1.709a3.75 3.75 0 00-1.827-.328zM7.5 8c.282 0 .5.218.5.5 0 .282-.218.5-.5.5a.493.493 0 01-.5-.5c0-.282.218-.5.5-.5z",
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"
}), /* @__PURE__ */ React.createElement("path", {
d: "M12 .005v1.997h-2v1.996h2v1.997h2V3.998h2V2.002h-2V.005z"
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgAddressBookNewSymbolic);
var address_book_new_symbolic_default = Memo;
export {
address_book_new_symbolic_default as default
};