UNPKG

@ant-design/react-native

Version:

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

15 lines (14 loc) 450 B
import { TextStyle, ViewStyle } from 'react-native'; import { Theme } from '../../style'; export interface StepperStyle { container: ViewStyle; input: TextStyle; stepWrap: ViewStyle; stepText: TextStyle; stepDisabled: ViewStyle; disabledStepTextColor: TextStyle; highlightStepTextColor: TextStyle; highlightStepBorderColor: ViewStyle; } declare const _default: (theme: Theme) => StepperStyle; export default _default;