UNPKG

@spark-web/vertical-stepper

Version:

--- title: Vertical Stepper storybookPath: data-display-vertical-stepper isExperimentalPackage: true ---

13 lines (12 loc) 650 B
import type { ReactNode } from 'react'; export interface StepProps { children?: ReactNode; } declare const Step: { ({ children }: StepProps): JSX.Element; Heading: ({ title, actionButton, renderActionButton, renderStepNumber, }: import("./step-heading").StepHeadingProps) => JSX.Element; Content: ({ children, render }: import("./step-content").StepContentProps) => JSX.Element; CompletedContent: ({ children, render, }: import("./step-completed-content").StepCompletedContentProps) => JSX.Element; Description: ({ children, render }: import("./step-description").StepDescriptionProps) => JSX.Element; }; export default Step;