UNPKG

@ant-design/react-native

Version:

基于蚂蚁金服移动设计规范的 React Native 组件库

13 lines (12 loc) 463 B
import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import { WithThemeStyles } from '../style'; import { StepPropsType } from './PropsType'; import { StepperStyle } from './style'; export interface StepProps extends StepPropsType, WithThemeStyles<StepperStyle> { style?: StyleProp<ViewStyle>; } export default class Stepper extends React.Component<StepProps, any> { static defaultProps: StepProps; render(): JSX.Element; }