import React from 'react'; import classNames from 'classnames'; import { Picker, Container } from './styled'; import { DateRangePickerProps } from './types'; const DateRangePicker = ({ className, startPlaceholder = 'Start Date', endPlaceholder = 'End Date', onChange, locale, readOnly, disabled, direction, dateFormat, initialStartDate, initialEndDate, format, icon, prevIcon, nextIcon, useReactPortal = true, }: DateRangePickerProps) => ( ); export default DateRangePicker;