import React from "react";
import { IntegrationLogoSvgWrapper, SvgLogoProps } from "./wrapper";
export const JumpcloudSvg = ({
color = "#1e8194",
square,
...rest
}: SvgLogoProps) => {
const viewBox = square ? "0 0 32 32" : "0 0 67 32";
const path = square ? (
<>
>
) : (
<>
>
);
return (
Jumpcloud integration logo
{path}
);
};