adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
63 lines (62 loc) • 1.8 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgGoJumpSymbolicRtl = (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",
stroke: "#474747"
}, /* @__PURE__ */ React.createElement("path", {
d: "M12 6v-.5a2.5 2.5 0 00-5 0V12",
style: {
marker: "none"
},
color: "#000",
overflow: "visible",
fill: "none",
strokeWidth: 2
}), /* @__PURE__ */ React.createElement("path", {
d: "M3 9h1c.257 0 .528.13.719.313L7 11.593l2.281-2.28C9.471 9.13 9.743 9 10 9h1v1c0 .31-.09.552-.281.75L7 14.406 3.281 10.75C3.091 10.552 3 10.31 3 10z",
style: {
lineHeight: "normal",
InkscapeFontSpecification: "'Bitstream Vera Sans'",
textIndent: 0,
textAlign: "start",
textDecorationLine: "none",
textTransform: "none",
marker: "none"
},
color: "#bebebe",
fontWeight: 400,
fontFamily: "Bitstream Vera Sans",
overflow: "visible",
stroke: "none"
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgGoJumpSymbolicRtl);
var go_jump_symbolic_rtl_default = Memo;
export {
go_jump_symbolic_rtl_default as default
};