m3-svelte
Version:
10 lines (9 loc) • 348 B
TypeScript
import type { LabelledAria } from "../misc/typing-utils";
type $$ComponentProps = {
size?: number;
container?: boolean;
center?: boolean;
} & LabelledAria;
declare const LoadingIndicator: import("svelte").Component<$$ComponentProps, {}, "">;
type LoadingIndicator = ReturnType<typeof LoadingIndicator>;
export default LoadingIndicator;