flowbite-svelte
Version:
Flowbite components for Svelte
18 lines (17 loc) • 519 B
TypeScript
import type { RangeProps } from "../..";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [RangeProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L867)
* ## Props
* @prop value = $bindable()
* @prop appearance = "none"
* @prop color = "blue"
* @prop size = "md"
* @prop inputClass
* @prop class: className
* @prop ...restProps
*/
declare const Range: import("svelte").Component<RangeProps, {}, "value">;
type Range = ReturnType<typeof Range>;
export default Range;