UNPKG

synapse-react-client

Version:

[![Build Status](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client.svg?branch=main)](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client) [![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synaps

16 lines (15 loc) 390 B
import React from 'react'; declare type ControlType = 'number' | 'date'; export declare type RangeValues = { min?: string; max?: string; }; export declare type RangeProps = { type: ControlType; initialValues?: RangeValues; className?: string; errorText?: string; onChange: Function; }; export declare const Range: React.FunctionComponent<RangeProps>; export {};