adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
78 lines (77 loc) • 2.35 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgEditRedoSymbolic = (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.5 6A3.515 3.515 0 002 9.5C2 11.421 3.58 13 5.5 13H6v-2h-.5C4.66 11 4 10.34 4 9.5S4.66 8 5.5 8H12V6z",
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",
fontWeight: 400,
fontFamily: "sans-serif",
overflow: "visible",
fill: "#474747"
}), /* @__PURE__ */ React.createElement("path", {
d: "M9 3v1c0 .257.13.528.313.719L11.593 7l-2.28 2.281C9.13 9.471 9 9.743 9 10v1h1c.31 0 .552-.09.75-.281L14.406 7 10.75 3.281C10.552 3.091 10.31 3 10 3z",
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",
fill: "#474747"
})));
return render(rest, ...restArgs);
};
const Memo = memo(SvgEditRedoSymbolic);
var edit_redo_symbolic_default = Memo;
export {
edit_redo_symbolic_default as default
};