UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

23 lines (22 loc) 690 B
import type { ProgressbarProps } from "../types"; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [ProgressbarProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1205) * ## Props * @prop progress = "45" * @prop precision = 0 * @prop tweenDuration = 400 * @prop animate = false * @prop size = "h-2.5" * @prop labelInside = false * @prop labelOutside = "" * @prop easing = cubicOut * @prop color = "primary" * @prop class: className * @prop classes * @prop ...restProps */ declare const Progressbar: import("svelte").Component<ProgressbarProps, {}, "">; type Progressbar = ReturnType<typeof Progressbar>; export default Progressbar;