m3-svelte
Version:
M3 Svelte implements the Material 3 design system in Svelte. See the [website](https://kendell.dev/m3-svelte/) for demos and usage instructions.
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;