UNPKG

@jk-core/components

Version:
11 lines (10 loc) 370 B
import { CalendarView } from '../../type'; interface Props { selectedDate?: Date; onClick: (year: number) => void; tileContent?: (date: Date, view: CalendarView) => React.ReactNode; max: Date; min: Date; } export default function YearTile({ selectedDate, onClick, tileContent, max, min, }: Props): import("react/jsx-runtime").JSX.Element; export {};