antd-mobile-rn
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
13 lines (12 loc) • 426 B
TypeScript
import React from 'react';
import { StyleProp, ViewStyle } from 'react-native';
import styles from 'rmc-input-number/lib/styles';
import { StepPropsType } from './PropsType';
export interface StepProps extends StepPropsType {
styles?: typeof styles;
style?: StyleProp<ViewStyle>;
}
export default class Stepper extends React.Component<StepProps, any> {
static defaultProps: StepProps;
render(): JSX.Element;
}