@playcanvas/pcui
Version:
User interface component library for the web
12 lines (11 loc) • 390 B
TypeScript
import { Element } from '../Element/component';
import { SliderInputArgs } from './index';
/**
* The SliderInput shows a NumericInput and a slider widget next to it. It acts as a proxy of the
* NumericInput.
*/
declare class SliderInput extends Element<SliderInputArgs, any> {
constructor(props: SliderInputArgs);
render(): import("react").JSX.Element;
}
export { SliderInput };