UNPKG

soignant-nomade-ui

Version:

A react library for the soignant-nomade design system. You can find a storybook project inside it

10 lines (9 loc) 300 B
/// <reference types="react" /> declare type InputProps = React.InputHTMLAttributes<HTMLInputElement> & { value: any; min: number; max: number; units?: string; }; export declare const RangeSlider: ({ value, units, min, max, ...props }: InputProps) => JSX.Element; export {};