UNPKG

@easykit/design

Version:

Easy kit design components

16 lines (15 loc) 472 B
import { FC, PropsWithChildren } from 'react'; export interface StepsProps extends PropsWithChildren { current?: number; className?: string; } export interface StepsItemProps extends PropsWithChildren { title: string; description?: string; className?: string; status?: 'wait' | 'process' | 'finish' | 'error'; index?: number; last?: boolean; } export declare const StepsItem: FC<StepsItemProps>; export declare const Steps: FC<StepsProps>;