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.
11 lines (10 loc) • 466 B
TypeScript
import type { HTMLAttributes } from "svelte/elements";
import type { LabelledAria } from "../misc/typing-utils";
type $$ComponentProps = {
sToHalfway?: number;
size?: number;
thickness?: number;
} & HTMLAttributes<SVGElement> & LabelledAria;
declare const CircularProgressEstimate: import("svelte").Component<$$ComponentProps, {}, "">;
type CircularProgressEstimate = ReturnType<typeof CircularProgressEstimate>;
export default CircularProgressEstimate;