UNPKG

@explita/daily-toolset-components

Version:

A lightweight and versatile collection of TypeScript utility functions and form components, inspired by ShadCN UI, designed for seamless everyday development. Enhance your Node.js, React, and Next.js projects with a well-structured suite of helpers for st

8 lines (7 loc) 292 B
import React from "react"; import { CalendarProps } from "../input.type"; declare function Calendar({ className, classNames, showOutsideDays, captionLabelRenderer, ...props }: CalendarProps): React.JSX.Element; declare namespace Calendar { var displayName: string; } export { Calendar };