UNPKG

@helpwave/hightide

Version:

helpwave's component and theming library

17 lines (14 loc) 685 B
import * as react_jsx_runtime from 'react/jsx-runtime'; import { PropsForTranslation } from '../../localization/useTranslation.mjs'; import { FormTranslationType } from '../../localization/defaults/form.mjs'; import '../../localization/util.mjs'; type LoadingAnimationTranslation = FormTranslationType; 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 };