UNPKG

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) 430 B
import type { HTMLAttributes } from "svelte/elements"; import type { LabelledAria } from "../misc/typing-utils"; type $$ComponentProps = { percent: number; size?: number; thickness?: number; } & HTMLAttributes<SVGElement> & LabelledAria; declare const CircularProgress: import("svelte").Component<$$ComponentProps, {}, "">; type CircularProgress = ReturnType<typeof CircularProgress>; export default CircularProgress;