@cn-ui/core
Version:
The @cn-ui/core is a collection of UI components and utilities for building modern web applications with SolidJS.
12 lines (11 loc) • 377 B
TypeScript
import { type Dayjs } from "@cn-ui/reactive";
export declare const CalendarDateCell: (props: {
date: Dayjs;
}) => import("solid-js").JSX.Element;
export declare const CalendarMonthCell: (props: {
date: Dayjs;
}) => import("solid-js").JSX.Element;
export declare const CalendarYearCell: (props: {
date: Dayjs;
year: number;
}) => import("solid-js").JSX.Element;