UNPKG

@availity/reactstrap-validation-date

Version:

Wrapper for react-date-range to work with availity-reactstrap-validation

20 lines (16 loc) 467 B
import { DateRangePicker } from '@availity/react-dates'; import { AvInput } from './AvInput'; export interface AvDateRangeProps extends AvInput, DateRangePicker { start?: AvInput; end?: AvInput; validate?: object; type?: string; disabled?: boolean; distance?: object; defaultValues?: object; theme?: object; hideIcon?: boolean; autoSync?: boolean; } declare const AvDateRange: React.ComponentType<AvDateRangeProps>; export default AvDateRange;