adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
62 lines (61 loc) • 2.37 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgToolsCheckSpellingSymbolic = (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: "M3 3.012v2h1.92c-.055 0 .084.159.084.082v.924H4C2.284 6.018.97 7.143.945 8.502c-.012.68.306 1.363.862 1.822.555.46 1.315.7 2.193.7h3.004v-5.93c0-1.171-.887-2.082-2.084-2.082zm1 5.006h1.004v1.005H4c-.52 0-.794-.137-.92-.242-.126-.104-.136-.172-.135-.244.003-.144.085-.52 1.055-.52zM7.996 2v9.023H11c.939 0 1.769-.372 2.299-.959.53-.586.766-1.336.756-2.066a3.079 3.079 0 00-.791-2.043C12.737 5.378 11.92 5 11 5H9.996V2zm2 5H11c.422 0 .626.126.787.303.162.177.264.447.268.722.004.276-.089.53-.24.698-.152.167-.356.3-.815.3H9.996zM3 11.293L.646 13.646a.5.5 0 10.708.708L3 12.707l2 2 2-2 2 2 2-2 2 2 2.354-2.353a.5.5 0 10-.708-.708L13 13.293l-2-2-2 2-2-2-2 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"
},
overflow: "visible",
color: "#000",
fontWeight: 400,
fontFamily: "sans-serif",
fill: "#474747"
})));
return render(rest, ...restArgs);
};
const Memo = memo(SvgToolsCheckSpellingSymbolic);
var tools_check_spelling_symbolic_default = Memo;
export {
tools_check_spelling_symbolic_default as default
};