antd-mobile-rn
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
47 lines (46 loc) • 1.05 kB
TypeScript
import { TextStyle, ViewStyle } from 'react-native';
export interface IPaginationStyle {
container: ViewStyle;
numberStyle: ViewStyle;
totalStyle: TextStyle;
activeTextStyle: TextStyle;
indicatorStyle: ViewStyle;
pointStyle: ViewStyle;
pointActiveStyle: ViewStyle;
spaceStyle: ViewStyle;
}
declare const _default: {
container: {
alignItems: string;
justifyContent: string;
};
numberStyle: {
flexDirection: string;
justifyContent: string;
};
totalStyle: {
fontSize: number;
color: string;
};
activeTextStyle: {
fontSize: number;
color: string;
};
indicatorStyle: {
flexDirection: string;
};
pointStyle: {
width: number;
height: number;
borderRadius: number;
backgroundColor: string;
};
pointActiveStyle: {
backgroundColor: string;
};
spaceStyle: {
marginHorizontal: number;
marginVertical: number;
};
};
export default _default;