UNPKG

@kinvolk/headlamp-plugin

Version:

The needed infrastructure for building Headlamp plugins.

11 lines (10 loc) 418 B
import Button, { ButtonProps } from '@mui/material/Button'; export interface ConfirmButtonProps extends ButtonProps { buttonComponent?: typeof Button; ariaLabel?: string; confirmTitle: string; confirmDescription: string; onConfirm: (...args: any[]) => void; [otherProps: string]: any; } export default function ConfirmButton(props: ConfirmButtonProps): import("react/jsx-runtime").JSX.Element;