adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
70 lines (69 loc) • 3 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgTouchDisabledSymbolic = (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.015",
...props
}, /* @__PURE__ */ React.createElement("g", {
fill: "#2e3436"
}, /* @__PURE__ */ React.createElement("path", {
d: "M8.072 0a6.996 6.996 0 00-3.488.891 1 1 0 10.975 1.746 4.997 4.997 0 014.97.05A4.996 4.996 0 0113 7v1a1 1 0 102 0V7a1 1 0 00-.01-.136A7 7 0 0011.54.96a6.993 6.993 0 00-3.468-.96zM2.855 2.82a1 1 0 00-.722.375l1.465 1.463c.053-.1.098-.203.158-.3a1 1 0 00-.8-1.538 1 1 0 00-.1 0zM8 3C6.367 3 4.97 4.002 4.355 5.416L6 7.061V7c0-1.117.884-2 2-2s2 .883 2 2v4.058l3.012 3.012a1 1 0 00-.305-.778c-.382-.382-.55-.736-.633-.984C11.991 12.06 12 12 12 12V7a1 1 0 00-.022-.218C11.862 4.687 10.122 3 8 3zM1.437 4.62a7.069 7.069 0 00-.425 2.212A1 1 0 001 7v5.063a1 1 0 102 0V7c0-.254.024-.506.062-.755zm6.547 1.367A1 1 0 007 7v1.06l2 1.999V7a1 1 0 00-1.016-1.013zM4 7.182V8a1 1 0 001.617.8zm.984 2.805A1 1 0 004 11v3a1 1 0 102 0v-3a1 1 0 00-1.016-1.013zM14 10a1 1 0 00-1 1 1 1 0 001 1 1 1 0 001-1 1 1 0 00-1-1zm-7 .182V12s0 .595.145 1.32c.145.726.412 1.652 1.148 2.387a1 1 0 101.414-1.414c-.264-.264-.497-.839-.602-1.363a5.008 5.008 0 01-.095-.738zm3.525 3.525c.187.325.433.665.768 1a1 1 0 00.518.288z",
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",
whiteSpace: "normal",
shapePadding: 0,
isolation: "auto",
mixBlendMode: "normal",
solidColor: "#000",
solidOpacity: 1,
marker: "none"
},
color: "#000",
fontWeight: 400,
fontFamily: "sans-serif",
overflow: "visible"
}), /* @__PURE__ */ React.createElement("path", {
d: "M1.531.47L.47 1.53l14 14 1.062-1.062z"
}), /* @__PURE__ */ React.createElement("path", {
d: "M1.53.47L.47 1.53l14 14 1.063-1.06z"
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgTouchDisabledSymbolic);
var touch_disabled_symbolic_default = Memo;
export {
touch_disabled_symbolic_default as default
};