import React from "react"; import { IntegrationLogoSvgWrapper, SvgLogoProps } from "./wrapper"; export const OktaSvg = ({ color = "#007dc1", square, ...rest }: SvgLogoProps) => { const viewBox = square ? "0 0 32 32" : "0 0 95 32"; const path = square ? ( ) : ( ); return ( Okta integration logo {path} ); };