import React, { type FC } from 'react' import { RiArrowDownSLine, RiArrowUpSLine } from '@remixicon/react' import type { DatePickerHeaderProps } from '../types' import { useMonths } from '../hooks' const Header: FC = ({ handleOpenYearMonthPicker, currentDate, onClickNextMonth, onClickPrevMonth, }) => { const months = useMonths() return (
) } export default React.memo(Header)