UNPKG

@kinvolk/headlamp-plugin

Version:

The needed infrastructure for building Headlamp plugins.

7 lines (6 loc) 274 B
import { CircularProgressProps } from '@mui/material/CircularProgress'; export interface LoaderProps extends CircularProgressProps { noContainer?: boolean; title: string; } export default function Loader(props: LoaderProps): import("react/jsx-runtime").JSX.Element;