adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
77 lines (76 loc) • 2.35 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgGoJumpSymbolic = (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", {
fontWeight: 400,
fill: "#474747"
}, /* @__PURE__ */ React.createElement("path", {
d: "M6.5 2A3.515 3.515 0 003 5.5V6h2v-.5C5 4.66 5.66 4 6.5 4S8 4.66 8 5.5V12h2V5.5C10 3.579 8.421 2 6.5 2z",
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"
},
color: "#000",
fontFamily: "sans-serif",
overflow: "visible"
}), /* @__PURE__ */ React.createElement("path", {
d: "M13 9h-1c-.257 0-.528.13-.719.313L9 11.593l-2.281-2.28C6.529 9.13 6.257 9 6 9H5v1c0 .31.09.552.281.75L9 14.406l3.719-3.656c.19-.198.281-.44.281-.75z",
style: {
lineHeight: "normal",
InkscapeFontSpecification: "'Bitstream Vera Sans'",
textIndent: 0,
textAlign: "start",
textDecorationLine: "none",
textTransform: "none",
marker: "none"
},
color: "#bebebe",
fontFamily: "Bitstream Vera Sans",
overflow: "visible"
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgGoJumpSymbolic);
var go_jump_symbolic_default = Memo;
export {
go_jump_symbolic_default as default
};