@ant-design/react-native
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
17 lines (16 loc) • 452 B
TypeScript
import { StyleProp, TextStyle, ViewStyle } from 'react-native';
export interface StepPropsType {
min?: number;
max?: number;
step?: number | string;
readOnly?: boolean;
disabled?: boolean;
autoFocus?: boolean;
value?: number;
defaultValue?: number;
onChange?: (value: any) => void;
upStyle?: StyleProp<ViewStyle>;
downStyle?: StyleProp<ViewStyle>;
inputStyle?: StyleProp<TextStyle>;
name?: string;
}