import type { OAuthClient } from '@supabase/supabase-js' import { X } from 'lucide-react' import { toast } from 'sonner' import { Button } from 'ui' import { Admonition } from 'ui-patterns/admonition' import { Input } from 'ui-patterns/DataInputs/Input' interface NewOAuthAppBannerProps { oauthApp: OAuthClient onClose: () => void } export const NewOAuthAppBanner = ({ oauthApp, onClose }: NewOAuthAppBannerProps) => { return (

Do copy this client id and client secret and store it in a secure place - you will not be able to see it again.

{}} onCopy={() => toast.success('Client Id copied to clipboard')} />
{}} onCopy={() => toast.success('Client secret copied to clipboard')} />
} >