UNPKG

@spark-web/vertical-stepper

Version:

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

9 lines (8 loc) 328 B
import type { ReactElement, ReactNode } from 'react'; export interface StepContentProps { children?: ReactNode; render?: ({ stepIndex }: { stepIndex: number; }) => ReactElement; } export declare const StepContent: ({ children, render }: StepContentProps) => import("@emotion/react/jsx-runtime").JSX.Element;