import React from "react";
import { SvgProps } from "../Svg";
import {
AddigySvg,
AwsSvg,
BambooHrSvg,
BitbucketSvg,
ConveyorSvg,
DefaultSvg,
DeploySvg,
EventsAPI,
GcpSvg,
GithubSvg,
GitlabSvg,
GsuiteSvg,
JamfSvg,
JiraSvg,
JumpcloudSvg,
OktaSvg,
OneLoginSvg,
SalesforceSvg,
SlackSvg,
ZoomSvg,
} from "./svg";
interface IntegrationLogoSvgProps extends SvgProps {
logo?: string;
color?: string;
square?: boolean;
size?: number;
}
const IntegrationLogoSvg = ({ logo, ...rest }: IntegrationLogoSvgProps) => {
switch (logo) {
case "addigy":
return ;
case "aws":
return ;
case "bamboohr":
return ;
case "bitbucket":
return ;
case "conveyor":
return ;
case "deploy":
return ;
case "events-api":
return ;
case "gcp":
return ;
case "github":
return ;
case "gitlab":
return ;
case "gsuite":
return ;
case "jamf":
return ;
case "jira":
return ;
case "jumpcloud":
return ;
case "okta":
return ;
case "onelogin":
return ;
case "salesforce":
return ;
case "slack":
return ;
case "zoom":
return ;
default:
return ;
}
};
export default IntegrationLogoSvg;