@dfinity/gix-components
Version:
A UI kit developed by the GIX team
12 lines (11 loc) • 323 B
TypeScript
/// <reference types="svelte" />
interface Props {
max: number;
min: number;
value: number;
ariaLabel: string;
handleInput?: (() => void) | undefined;
}
declare const InputRange: import("svelte").Component<Props, {}, "value">;
type InputRange = ReturnType<typeof InputRange>;
export default InputRange;