adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
105 lines (104 loc) • 3.43 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgInputTabletSymbolic = (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: "#2e3436"
}, /* @__PURE__ */ React.createElement("path", {
d: "M12.403 4.15L7.45 9.102 7 11l1.87-.39 5-5c.549-.593.63-1.11.13-1.61s-1.17-.278-1.597.15z",
style: {
lineHeight: "normal",
textIndent: 0,
textAlign: "start",
textDecorationLine: "none",
textDecorationStyle: "solid",
textDecorationColor: "#000",
textTransform: "none",
isolation: "auto",
mixBlendMode: "normal",
marker: "none"
},
clipRule: "evenodd",
overflow: "visible",
fillRule: "evenodd",
imageRendering: "optimizeQuality",
shapeRendering: "geometricPrecision",
textRendering: "geometricPrecision"
}), /* @__PURE__ */ React.createElement("path", {
d: "M2.191 6L.263 15h15.473L14 6.897 12.316 8.58l.946 4.42H2.738l1.07-5h3.33l1.999-2zm9.776 0l-2 2h.1l2-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"
},
overflow: "visible",
fillRule: "evenodd"
}), /* @__PURE__ */ React.createElement("path", {
d: "M8 0v1.5a.506.506 0 01-.147.356.484.484 0 01-.345.144H4.496a1.498 1.498 0 00-1.297 2.248c.266.463.761.752 1.295.752h3.01c.18 0 .34.092.43.248A.506.506 0 018 5.5V6h1v-.5A1.498 1.498 0 007.504 4h-3.01a.491.491 0 01-.428-.248.507.507 0 010-.504.488.488 0 01.43-.248h3.012A1.501 1.501 0 009 1.5V0z",
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"
},
overflow: "visible"
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgInputTabletSymbolic);
var input_tablet_symbolic_default = Memo;
export {
input_tablet_symbolic_default as default
};