2025-04-01 10:38:02 +09:00

14 lines
336 B
TypeScript

import { Box, LoadingPlaceholder } from '@grafana/ui';
export interface Props {
text?: string;
}
export const Loader = ({ text = 'Loading...' }: Props) => {
return (
<Box display="flex" alignItems="center" direction="column" justifyContent="center" paddingTop={10}>
<LoadingPlaceholder text={text} />
</Box>
);
};