@jk-core/components
Version:
components for jk
11 lines (10 loc) • 370 B
TypeScript
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 {};