@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.11 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLogoGoogleDocsColor = (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: "M16.75 12.25H7.25V14H16.75V12.25Z", fill: "white" }), _jsx("path", { d: "M14.25 15.25H7.25V17H14.25V15.25Z", fill: "white" }), _jsx("path", { d: "M14.5 6.5L17.0775 6.625L20 6.5L14.5 1L14.375 4.3575L14.5 6.5Z", fill: "#0066DA" }), _jsx("path", { d: "M16.75 9.25H7.25V11H16.75V9.25Z", fill: "white" }), _jsx("path", { d: "M14.5 6.5V1H5.5C4.67125 1 4 1.67125 4 2.5V21.5C4 22.3288 4.67125 23 5.5 23H18.5C19.3287 23 20 22.3288 20 21.5V6.5H14.5ZM14 16.75H7.5V15.5H14V16.75ZM16.5 13.75H7.5V12.5H16.5V13.75ZM16.5 10.75H7.5V9.5H16.5V10.75Z", fill: "#2684FC" })] }));
};
IconLogoGoogleDocsColor.iconName = "logo-google-docs--color";
export default IconLogoGoogleDocsColor;