UNPKG

@kinvolk/headlamp-plugin

Version:

The needed infrastructure for building Headlamp plugins.

15 lines (14 loc) 385 B
import Button from '@mui/material/Button'; import React, { ReactNode } from 'react'; interface OauthPopupProps { width?: number; height?: number; url: string; title?: string; onClose?: () => any; onCode: (params: any) => any; children?: ReactNode; button: typeof Button; } declare const OauthPopup: React.FC<OauthPopupProps>; export default OauthPopup;