m3-svelte
Version:
M3 Svelte implements the Material 3 design system in Svelte. See the [website](https://ktibow.github.io/m3-svelte/) for demos and usage instructions.
6 lines (5 loc) • 379 B
TypeScript
import type { HTMLAttributes } from "svelte/elements";
/** @deprecated use LoadingIndicator or one of the Estimate components instead */
declare const CircularProgressIndeterminate: import("svelte").Component<HTMLAttributes<SVGElement>, {}, "">;
type CircularProgressIndeterminate = ReturnType<typeof CircularProgressIndeterminate>;
export default CircularProgressIndeterminate;