import React from "react";
import { IntegrationLogoSvgWrapper, SvgLogoProps } from "./wrapper";
export const ZoomSvg = ({
color = "#2d8cff",
square,
...rest
}: SvgLogoProps) => {
const viewBox = square ? "0 0 32 32" : "0 0 142 32";
const path = square ? (
<>
>
) : (
<>
>
);
return (
Zoom integration logo
{path}
);
};