import React from "react";
import { IntegrationLogoSvgWrapper, SvgLogoProps } from "./wrapper";
export const JamfSvg = ({ color, square, ...rest }: SvgLogoProps) => {
const viewBox = square ? "0 0 32 32" : "0 0 93 32";
const path = square ? (
<>
>
) : (
<>
>
);
return (
Jamf integration logo
{path}
);
};