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

10 lines (9 loc) 648 B
import React from "react"; import { TimelineConnectorProps, TimelineContentProps, TimelineItemProps, TimelineOppositeContentProps, TimelinePointProps, TimelineProps } from "./type"; export declare const Timeline: React.FC<TimelineProps>; export declare const TimelineItem: React.FC<TimelineItemProps>; export declare const TimelinePoint: React.FC<TimelinePointProps>; export declare const TimelineContent: React.FC<TimelineContentProps>; export declare const TimelineOppositeContent: React.FC<TimelineOppositeContentProps>; export declare const TimelineConnector: React.FC<TimelineConnectorProps>; export declare const TimelineSeparator: React.FC;