import React from "react";
import { IntegrationLogoSvgWrapper, SvgLogoProps } from "./wrapper";
import { colors } from "../../../tokens";
export const DeploySvg = ({
color = colors.gold["400"],
square,
...rest
}: SvgLogoProps) => {
const viewBox = square ? "0 0 32 32" : "0 0 32 28";
const path = square ? (
) : (
);
return (
Aptible Deploy integration logo
{path}
);
};