"use client"; import { Button } from "../../../../shadcnui"; export interface OAuthConsentActionsProps { /** Called when user clicks Authorize */ onApprove: () => void; /** Called when user clicks Deny */ onDeny: () => void; /** Whether an action is in progress */ isLoading?: boolean; } /** * Action buttons for OAuth consent screen */ export function OAuthConsentActions({ onApprove, onDeny, isLoading = false }: OAuthConsentActionsProps) { return (