adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
50 lines (49 loc) • 1.7 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgLocationServicesDisabledSymbolic = (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: "#2e3436"
}, /* @__PURE__ */ React.createElement("path", {
d: "M1.531.469L.47 1.53l14 14 1.062-1.062z"
}), /* @__PURE__ */ React.createElement("path", {
d: "M3.025 5.498A5.067 5.067 0 003 6c0 .173.014.332.031.5.014.167.036.336.063.5C3.666 10.514 6 13.004 8 15.004c.714-.714 1.47-1.494 2.174-2.358zM8 1C6.103 1 4.472 2.069 3.625 3.625L6 6a2 2 0 112 2l3.213 3.213c.795-1.228 1.432-2.61 1.693-4.213.027-.164.049-.333.063-.5.017-.168.031-.327.031-.5a5 5 0 00-5-5z",
style: {
isolation: "auto",
mixBlendMode: "normal",
solidColor: "#000",
solidOpacity: 1,
marker: "none"
},
color: "#000",
overflow: "visible"
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgLocationServicesDisabledSymbolic);
var location_services_disabled_symbolic_default = Memo;
export {
location_services_disabled_symbolic_default as default
};