adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
66 lines (65 loc) • 2.85 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgWeatherClearSymbolic = (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: "M8 4.006c-2.195 0-4 1.805-4 4 0 2.195 1.805 4 4 4 2.195 0 4-1.805 4-4 0-2.195-1.805-4-4-4z",
style: {
lineHeight: "normal",
InkscapeFontSpecification: "Sans",
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"
},
color: "#bebebe",
fontWeight: 400,
fontFamily: "Sans",
overflow: "visible"
}), /* @__PURE__ */ React.createElement("path", {
d: "M7.5 0h1c.277 0 .5.223.5.5v2c0 .277-.223.5-.5.5h-1a.499.499 0 01-.5-.5v-2c0-.277.223-.5.5-.5zm0 13h1c.277 0 .5.223.5.5v2c0 .277-.223.5-.5.5h-1a.499.499 0 01-.5-.5v-2c0-.277.223-.5.5-.5zM1.99 2.697l.707-.707a.499.499 0 01.707 0l1.414 1.414a.499.499 0 010 .707l-.707.707a.499.499 0 01-.707 0L1.99 3.404a.499.499 0 010-.707zm9.192 9.193l.707-.708a.499.499 0 01.707 0l1.415 1.414a.499.499 0 010 .707l-.708.707a.499.499 0 01-.707 0l-1.414-1.414a.499.499 0 010-.707zm-8.485 2.12l-.707-.707a.499.499 0 010-.707l1.414-1.414a.499.499 0 01.707 0l.707.707a.499.499 0 010 .707L3.404 14.01a.499.499 0 01-.707 0zm9.193-9.192l-.708-.707a.499.499 0 010-.707l1.414-1.414a.499.499 0 01.708 0l.707.707a.499.499 0 010 .707l-1.415 1.414a.499.499 0 01-.707 0zM16 7.5v1c0 .277-.223.5-.5.5h-2a.499.499 0 01-.5-.5v-1c0-.277.223-.5.5-.5h2c.277 0 .5.223.5.5zm-13 0v1c0 .277-.223.5-.5.5h-2a.499.499 0 01-.5-.5v-1c0-.277.223-.5.5-.5h2c.277 0 .5.223.5.5z"
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgWeatherClearSymbolic);
var weather_clear_symbolic_default = Memo;
export {
weather_clear_symbolic_default as default
};