@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 843 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLogoGoogleSitesColor = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { fill: "#4758B5", d: "M18.5 23h-13A1.5 1.5 0 0 1 4 21.5v-19A1.5 1.5 0 0 1 5.5 1h9L20 6.5v15a1.5 1.5 0 0 1-1.5 1.5" }), _jsx("path", { fill: "#354287", d: "M14.5 1 20 6.5h-5.5z" }), _jsx("path", { fill: "#fff", d: "M16.5 9.5h-9v1.25h9zM16.5 12h-1.25v4.25h1.25zM14 12H7.5v4.25H14z" })] }));
};
IconLogoGoogleSitesColor.iconName = "logo-google-sites--color";
export default IconLogoGoogleSitesColor;