@spark-web/vertical-stepper
Version:
--- title: Vertical Stepper storybookPath: data-display-vertical-stepper isExperimentalPackage: true ---
13 lines (12 loc) • 873 B
TypeScript
import type { ReactNode } from 'react';
export interface StepProps {
children?: ReactNode;
}
declare const Step: {
({ children }: StepProps): import("@emotion/react/jsx-runtime").JSX.Element;
Heading: ({ title, actionButton, renderActionButton, renderStepNumber, renderStepIcon, children, }: import("./step-heading.js").StepHeadingProps) => import("@emotion/react/jsx-runtime").JSX.Element;
Content: ({ children, render }: import("./step-content.js").StepContentProps) => import("@emotion/react/jsx-runtime").JSX.Element;
CompletedContent: ({ children, render, }: import("./step-completed-content.js").StepCompletedContentProps) => import("@emotion/react/jsx-runtime").JSX.Element;
Description: ({ children, render }: import("./step-description.js").StepDescriptionProps) => import("@emotion/react/jsx-runtime").JSX.Element;
};
export default Step;