UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 909 B
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", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { d: "M18.5 23H5.5C4.67125 23 4 22.3288 4 21.5V2.5C4 1.67125 4.67125 1 5.5 1H14.5L20 6.5V21.5C20 22.3288 19.3287 23 18.5 23Z", fill: "#FFBA00" }), _jsx("path", { d: "M14.5 1L20 6.5H14.5V1Z", fill: "#FF9500" }), _jsx("path", { d: "M15.75 9.5H8.25H7V10.75V15V16.25H8.25H15.75H17V15V10.75V9.5H15.75ZM15.75 15H8.25V10.75H15.75V15Z", fill: "white" })] })); }; IconLogoGoogleSlidesColor.iconName = "logo-google-slides--color"; export default IconLogoGoogleSlidesColor;