antd-mobile-taro-ui
Version:
以antd-mobile为设计标准,基于taro框架的微信小程序组件库
11 lines (10 loc) • 434 B
TypeScript
import React, { FC } from 'react';
import { NativeProps } from 'antd-mobile/es/utils/native-props';
declare type Direction = 'horizontal' | 'vertical';
export declare type StepsProps = {
current?: number;
direction?: Direction;
children?: React.ReactNode;
} & NativeProps<'--title-font-size' | '--description-font-size' | '--indicator-margin-right' | '--icon-size'>;
export declare const Steps: FC<StepsProps>;
export {};