adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
73 lines (72 loc) • 3.01 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgWeatherFewCloudsSymbolic = (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: "M9.5 10A2.5 2.5 0 007 12.5c0 .218.041.423.094.625A1.549 1.549 0 006.5 13a1.5 1.5 0 100 3h8a1.5 1.5 0 100-3 2 2 0 00-2-2c-.316 0-.61.088-.875.219A2.47 2.47 0 009.5 10z",
style: {
marker: "none"
},
color: "#000",
overflow: "visible"
}), /* @__PURE__ */ React.createElement("path", {
d: "M6.988 4.006c-2.194 0-4 1.805-4 4 0 1.895 1.349 3.494 3.13 3.896l.001-.01c.478-2.089 2.14-3.004 4.045-2.81.192.045.372.115.547.195.014.006.03.01.043.016.141-.407.235-.835.235-1.287 0-2.195-1.806-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: "M0 7.5c0-.277.223-.5.5-.5h1c.277 0 .5.223.5.5v1c0 .277-.223.5-.5.5h-1a.499.499 0 01-.5-.5zm12 0c0-.277.223-.5.5-.5h1c.277 0 .5.223.5.5v1c0 .277-.223.5-.5.5h-1a.499.499 0 01-.5-.5zM1.697 12.596a.499.499 0 010-.707l.707-.707a.499.499 0 01.707 0l.707.707a.499.499 0 010 .707l-.707.707a.499.499 0 01-.707 0zm8.485-8.485a.499.499 0 010-.707l.707-.707a.499.499 0 01.707 0l.707.707a.499.499 0 010 .707l-.707.707a.499.499 0 01-.707 0zM6.5 3a.499.499 0 01-.5-.5v-1c0-.277.223-.5.5-.5h1c.277 0 .5.223.5.5v1c0 .277-.223.5-.5.5zM3.111 4.818a.499.499 0 01-.707 0l-.707-.707a.499.499 0 010-.707l.707-.707a.499.499 0 01.707 0l.707.707a.499.499 0 010 .707z"
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgWeatherFewCloudsSymbolic);
var weather_few_clouds_symbolic_default = Memo;
export {
weather_few_clouds_symbolic_default as default
};