UNPKG

@nimbus-ds/stepper

Version:

Stepper component for guiding users through multi-step processes

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