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) 824 B
import React from "react"; interface StepperContainerProps { children: React.ReactNode; currentStep: number; className?: string; direction?: "vertical" | "horizontal"; } export declare const StepperContainer: React.FC<StepperContainerProps>; interface StepProps { children: React.ReactNode; isActive?: boolean; isCompleted?: boolean; stepNumber?: number; isHorizontal?: boolean; className?: string; customIcon?: React.ReactNode; } export declare const Step: React.FC<StepProps>; interface StepLabelProps { children: React.ReactNode; className?: string; } export declare const StepLabel: React.FC<StepLabelProps>; interface StepContentProps { children: React.ReactNode; className?: string; } export declare const StepContent: React.FC<StepContentProps>; export {};