@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 830 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLogoGoogleSlidesColor = (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: "#FFBA00", 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: "#FF9500", d: "M14.5 1 20 6.5h-5.5z" }), _jsx("path", { fill: "#fff", d: "M15.75 9.5H7v6.75h10V9.5zm0 5.5h-7.5v-4.25h7.5z" })] }));
};
IconLogoGoogleSlidesColor.iconName = "logo-google-slides--color";
export default IconLogoGoogleSlidesColor;