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