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

30 lines (29 loc) 864 B
export type TimelineProps = { children: React.ReactNode; className?: string; align?: "left" | "right" | "alternate" | "reverse-alternate"; }; export type TimelineItemProps = { children: React.ReactNode; className?: string; }; export type TimelinePointProps = { className?: string; variant?: "outlined" | "filled"; color?: "primary" | "secondary" | "success" | "danger" | "warning" | "info"; icon?: React.ReactNode; image?: string; }; export type TimelineConnectorProps = { className?: string; color?: "primary" | "secondary" | "success" | "danger" | "warning" | "info"; variant?: "dotted" | "dashed" | "solid"; }; export type TimelineContentProps = { children: React.ReactNode; className?: string; }; export type TimelineOppositeContentProps = { children: React.ReactNode; className?: string; };