adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
86 lines (85 loc) • 2.96 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgFormatTextBoldSymbolic = (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: "#000",
fontWeight: 400,
fontFamily: "sans-serif",
fill: "#474747"
}, /* @__PURE__ */ React.createElement("path", {
d: "M5 3v2h6c.428 0 1 .614 1 1v1H7c-.92 0-1.736.38-2.25.965a3.037 3.037 0 00-.737 2.045c.006.72.246 1.449.758 2.027.513.579 1.32.963 2.229.963h7V6a3 3 0 00-3-3zm2 6h5v2H7c-.398 0-.579-.116-.73-.287a1.138 1.138 0 01-.257-.723c-.002-.28.093-.54.239-.705C6.397 9.12 6.577 9 7 9z",
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",
marker: "none"
},
overflow: "visible"
}), /* @__PURE__ */ React.createElement("path", {
d: "M4 3v2h5c.428 0 1 .614 1 1v1H5c-.92 0-1.736.38-2.25.965a3.037 3.037 0 00-.737 2.045c.006.72.246 1.449.758 2.027.513.579 1.32.963 2.229.963h7V6a3 3 0 00-3-3zm1 6h5v2H5c-.398 0-.579-.116-.73-.287a1.138 1.138 0 01-.257-.723c-.002-.28.093-.54.239-.705C4.397 9.12 4.577 9 5 9z",
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",
marker: "none"
},
overflow: "visible"
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgFormatTextBoldSymbolic);
var format_text_bold_symbolic_default = Memo;
export {
format_text_bold_symbolic_default as default
};