UNPKG

@nimbus-ds/stepper

Version:

Stepper component for guiding users through multi-step processes

13 lines (10 loc) 285 B
import { type ReactNode } from "react"; export interface StepperCardProperties { className?: string; /** * The content to be rendered inside the card container * @TJS-type React.ReactNode */ children: ReactNode; } export type StepperCardProps = StepperCardProperties;