UNPKG

timeline-calendar-react

Version:

A timeline calendar component for React, built with TypeScript and Vite.

11 lines (10 loc) 289 B
import { Theme } from '../../types'; type ItemProps = { theme: Theme; sx?: React.CSSProperties; className?: string; dataTestid?: string; children?: React.ReactNode; }; export declare const Item: (props: ItemProps) => import("react/jsx-runtime").JSX.Element; export {};