UNPKG

trae-ui

Version:

Trae UI is a modern, highly customizable, and accessible UI component library for React and Next.js, built with TailwindCSS and TypeScript. It offers a responsive, reusable, and developer-friendly set of components to accelerate building visually stunning

12 lines (11 loc) 290 B
import React from "react"; export interface DatePickerProps { range?: boolean; placeholder?: string; onDateChange?: (date: Date | { start: Date; end: Date; }) => void; disabledDates?: Date[]; } export declare const DatePicker: React.FC<DatePickerProps>;