import React from "react";
import { IntegrationLogoSvgWrapper, SvgLogoProps } from "./wrapper";
export const BambooHrSvg = ({
color = "#69c52f",
square,
...rest
}: SvgLogoProps) => {
const viewBox = square ? "0 0 32 32" : "0 0 210 32";
const path = square ? (
<>
>
) : (
);
return (
BambooHR integration logo
{path}
);
};