UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 905 B
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconLogoGoogleMeet = (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", { fillRule: "evenodd", clipRule: "evenodd", d: "M2 8.75L7 3.75H16.2437C17.1409 3.75 17.875 4.4914 17.875 5.39755V7.97488L20.9674 5.52523C21.3804 5.17863 22 5.46978 22 6.01048V17.7395C22 18.2802 21.3667 18.5714 20.9536 18.2248L17.875 15.747V18.6049C17.875 19.5097 17.1409 20.25 16.2437 20.25H3.66668C2.75 20.25 2 19.5 2 18.5833V8.75ZM4 18.25V9.57843L7.82843 5.75H15.875V18.25H4Z" }) })); }; IconLogoGoogleMeet.iconName = "logo-google-meet"; export default IconLogoGoogleMeet;