UNPKG
@faakhir/headlamp-plugin
Version:
latest (0.11.5-dev)
0.11.5-dev
0.11.4-dev
The needed infrastructure for building Headlamp plugins.
@faakhir/headlamp-plugin
/
lib
/
components
/
common
/
Loader.d.ts
7 lines
(6 loc)
•
268 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
CircularProgressProps
}
from
'@mui/material/CircularProgress'
;
export
interface
LoaderProps
{
noContainer
?:
boolean
;
title
:
string
; }
export
default
function
Loader
(
props
:
LoaderProps
&
CircularProgressProps
):
import
(
"react/jsx-runtime"
).
JSX
.
Element
;