UNPKG

@spark-web/vertical-stepper

Version:

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

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