UNPKG

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.

10 lines (9 loc) 357 B
import type { HTMLAttributes } from "svelte/elements"; type $$ComponentProps = { percent: number; size?: number; thickness?: number; } & HTMLAttributes<SVGElement>; declare const CircularProgress: import("svelte").Component<$$ComponentProps, {}, "">; type CircularProgress = ReturnType<typeof CircularProgress>; export default CircularProgress;