adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
38 lines (37 loc) • 1.48 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgStartHereSymbolic = (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: "M13.63 0c-3.325 0-3.948 4.735-2.078 4.735S16.954 0 13.629 0zM8.11 4.148c.995.06 2.088-3.8.217-3.557-1.871.243-1.213 3.496-.217 3.557zM3.547 6.547c.708-.312.09-3.36-1.113-2.53-1.204.832.405 2.841 1.113 2.53zM5.542 4.95c.843-.171.89-3.629-.614-3.009-1.504.62-.228 3.182.614 3.01zm4.402 7.739c.15 1.142-.838 1.706-1.805.97-3.08-2.344 5.097-3.513 4.558-6.716-.447-2.658-8.603-1.84-9.532 2.32-.628 2.813 2.588 6.716 5.944 6.716 1.651 0 3.556-1.491 3.912-3.38.272-1.44-3.202-.863-3.077.09z",
fill: "#474747"
})));
return render(rest, ...restArgs);
};
const Memo = memo(SvgStartHereSymbolic);
var start_here_symbolic_default = Memo;
export {
start_here_symbolic_default as default
};