UNPKG

@helpwave/hightide

Version:

helpwave's component and theming library

19 lines (16 loc) 615 B
import * as react_jsx_runtime from 'react/jsx-runtime'; import { PropsForTranslation } from '../hooks/useTranslation.js'; import '../hooks/useLanguage.js'; import 'react'; type LoadingAnimationTranslation = { loading: string; }; type LoadingAnimationProps = { loadingText?: string; classname?: string; }; /** * A Component to show when loading data */ declare const LoadingAnimation: ({ overwriteTranslation, loadingText, classname }: PropsForTranslation<LoadingAnimationTranslation, LoadingAnimationProps>) => react_jsx_runtime.JSX.Element; export { LoadingAnimation, type LoadingAnimationProps };