@datepicker-react/styled
Version:
A React datepicker build with styled-components.
19 lines (18 loc) • 431 B
TypeScript
import {FirstDayOfWeek} from '@datepicker-react/hooks'
interface MonthProps {
year: number
month: number
firstDayOfWeek: FirstDayOfWeek
dayLabelFormat(date: Date): string
weekdayLabelFormat(date: Date): string
monthLabelFormat(date: Date): string
}
declare const Month: ({
year,
month,
firstDayOfWeek,
dayLabelFormat,
monthLabelFormat,
weekdayLabelFormat,
}: MonthProps) => JSX.Element
export default Month