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) • 375 B
TypeScript
import type { HTMLAttributes } from "svelte/elements";
/** @deprecated use LoadingIndicator or one of the Estimate components instead */
declare const LinearProgressIndeterminate: import("svelte").Component<HTMLAttributes<HTMLDivElement>, {}, "">;
type LinearProgressIndeterminate = ReturnType<typeof LinearProgressIndeterminate>;
export default LinearProgressIndeterminate;