@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 983 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLogoGmail = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsx("svg", { viewBox: "0 0 24 24", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { d: "M20.5 2.99988C20 2.99988 19.4 3.19988 18.9 3.59988L12 9.29988L5.1 3.59988C4.6 3.19988 4 2.99988 3.5 2.99988C2.2 2.99988 1 3.99988 1 5.49988V17.9999C1 19.0999 1.9 19.9999 3 19.9999H7V12.9999L12 16.9999L17 12.9999V19.9999H21C22.1 19.9999 23 19.0999 23 17.9999V5.49988C23 3.99988 21.8 2.99988 20.5 2.99988ZM21 17.9999H19V8.79988L12 14.4999L5 8.79988V17.9999H3V5.47988C3 5.05988 3.49 4.82988 3.82 5.08988L12 11.7999L20.18 5.08988C20.51 4.82988 21 5.05988 21 5.47988V17.9999Z" }) }));
};
IconLogoGmail.iconName = "logo-gmail";
export default IconLogoGmail;