adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
38 lines (37 loc) • 1.51 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgFaceRaspberrySymbolic = (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: "M8 1a7 7 0 100 14A7 7 0 008 1zM6 5c.558 0 1.031.473 1.031 1.031V7c0 .558-.473 1-1.031 1-.558 0-1-.442-1-1v-.969C5 5.473 5.442 5 6 5zm4 0c.558 0 1 .473 1 1.031V7c0 .558-.442 1-1 1s-1-.442-1-1v-.969C9 5.473 9.442 5 10 5zM3 9.063c.997.636 4.016.937 5 .937.492 0 1.429.015 2.406-.094.978-.108 1.996-.36 2.594-.843v.5c0 .441-.753.919-2.156 1.187l.25.531c.279.604.083 1.276-.438 1.532l-.25.125c-.52.255-1.175-.03-1.469-.625l-.624-1.282c-.018-.034-.02-.035-.032-.062H8c-3.256 0-5-.874-5-1.406v-.5z",
fill: "#474747"
})));
return render(rest, ...restArgs);
};
const Memo = memo(SvgFaceRaspberrySymbolic);
var face_raspberry_symbolic_default = Memo;
export {
face_raspberry_symbolic_default as default
};