UNPKG

reablocks

Version:
14 lines (12 loc) 302 B
import { FC, PropsWithChildren } from 'react'; export interface StepProps extends PropsWithChildren { /** * Optional Text of the marker */ label?: string; /** * CSS Classname to applied to the Step */ className?: string; } export declare const Step: FC<StepProps>;