synapse-react-client
Version:
[](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client) [](https://badge.fury.io/js/synaps
12 lines (11 loc) • 455 B
TypeScript
import React from 'react';
import { Moment } from 'moment-timezone';
import 'react-datetime/css/react-datetime.css';
export declare type CalendarWithIconFormGroupProps = {
value: string | Moment;
setterCallback: (value: string | Moment) => void;
label?: string;
disabled?: boolean;
isValidDate?: (currentDate: any) => boolean;
};
export declare const CalendarWithIconFormGroup: React.FunctionComponent<CalendarWithIconFormGroupProps>;