@uiw/react-native
Version:
UIW for React Native
20 lines (19 loc) • 513 B
TypeScript
import { ViewProps } from 'react-native';
export interface TimelineItemsProps {
/** 标题 */
title: string;
/** 子标题 */
tips?: string;
/** 标示颜色 */
color?: string;
/** 子项内容 */
desc?: string | string[];
}
export interface TimelineProps extends ViewProps {
/** 是否倒序 */
isReverse?: boolean;
/** 步骤条数据列表 */
items: TimelineItemsProps[];
}
declare const _default: (props: TimelineProps) => JSX.Element;
export default _default;