UNPKG

@b1dr/xip-ui

Version:

A UI library for SolidJS with Themescura

13 lines (12 loc) 329 B
import { type JSX } from "solid-js"; interface RangeInputProps { label: string; min: number; max: number; step: number; value: number; showValue?: boolean; onChange: JSX.EventHandler<HTMLInputElement, InputEvent>; } export declare const RangeInput: (props: RangeInputProps) => JSX.Element; export {};