@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
24 lines (23 loc) • 836 B
TypeScript
/**
* DateRange module.
* @module @massds/mayflower-react/DateRange
* @requires module:@massds/mayflower-assets/scss/02-molecules/date-range
* @requires external:pikaday/scss/pikaday
* @requires module:@massds/mayflower-assets/scss/00-base/pikaday
* @requires module:@massds/mayflower-assets/scss/01-atoms/input-date
*/
import React from 'react';
import { InputDateProps } from '../InputDate';
export interface DateRangeProps {
/** The text label of the date range input */
label: string;
/** The start date of your filter query, @forms/InputDate */
startDate: InputDateProps;
/** The end date of your filter query, @forms/InputDate */
endDate: InputDateProps;
}
declare class DateRange extends React.Component<DateRangeProps> {
constructor(props: any);
render(): any;
}
export default DateRange;