@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.01 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLogoGoogleFormsColor = (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: "#7248B9", 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: "#56368A", d: "M14.5 1 20 6.5h-5.5z" }), _jsx("path", { fill: "#fff", d: "M16.5 9.5h-6.25v1.25h6.25zM8.25 10.875a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5M16.5 12.5h-6.25v1.25h6.25zM8.25 13.875a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5M16.5 15.5h-6.25v1.25h6.25zM8.25 16.875a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5" })] }));
};
IconLogoGoogleFormsColor.iconName = "logo-google-forms--color";
export default IconLogoGoogleFormsColor;