antd-mobile
Version:
<div align="center">
11 lines (10 loc) • 428 B
TypeScript
import type { FC, ReactNode } from 'react';
import { NativeProps } from '../../utils/native-props';
declare type Direction = 'horizontal' | 'vertical';
export declare type StepsProps = {
current?: number;
direction?: Direction;
children?: ReactNode;
} & NativeProps<'--title-font-size' | '--description-font-size' | '--indicator-margin-right' | '--icon-size'>;
export declare const Steps: FC<StepsProps>;
export {};