UNPKG

@helpwave/hightide

Version:

helpwave's component and theming library

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