adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
43 lines (42 loc) • 1.42 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgFindLocationSymbolic = (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 15.974 16",
...props
}, /* @__PURE__ */ React.createElement("path", {
d: "M7 0v1.031A6.514 6.514 0 001.063 7H0v1h1.063A6.513 6.513 0 007 13.969V15h1v-1.031c3.188-.234 5.724-2.78 5.969-5.969H15V7h-1.03C13.724 3.811 11.189 1.233 8 1V0zm.531 2.813A4.665 4.665 0 0112.22 7.5a4.665 4.665 0 01-4.688 4.688c-2.606 0-4.75-2.082-4.75-4.688s2.144-4.688 4.75-4.688zM7.501 4a3.5 3.5 0 100 7 3.5 3.5 0 000-7z",
style: {
marker: "none"
},
color: "#000",
overflow: "visible",
fill: "#474747"
})));
return render(rest, ...restArgs);
};
const Memo = memo(SvgFindLocationSymbolic);
var find_location_symbolic_default = Memo;
export {
find_location_symbolic_default as default
};