2024-03-16 14:11:43 +08:00

105 lines
2.5 KiB
TypeScript

import { ViewStyle, TextStyle } from 'react-native';
export interface ConterStyle {
container: ViewStyle;
ctrl: ViewStyle;
ctrlText: TextStyle;
input: ViewStyle;
squareSolid: ViewStyle;
circularHollow: ViewStyle;
squareHollow: ViewStyle;
ctrlSymbolHor: ViewStyle;
ctrlSymboVer: ViewStyle;
ctrlSymbolSolid: ViewStyle;
disabled: ViewStyle;
squareJoinHollowLeft: ViewStyle;
squareJoinHollowRight: ViewStyle;
inputWithBorder: ViewStyle;
}
declare const _default: {
container: {
flexDirection: string;
width: number;
alignItems: string;
};
ctrl: {
width: number;
height: number;
alignItems: string;
justifyContent: string;
backgroundColor: any;
borderRadius: any;
};
squareSolid: {
borderRadius: number;
};
circularHollow: {
backgroundColor: string;
borderWidth: number;
borderColor: any;
};
squareHollow: {
borderRadius: number;
backgroundColor: string;
borderWidth: number;
borderColor: any;
};
squareJoinHollowLeft: {
borderTopLeftRadius: number;
borderBottomLeftRadius: number;
borderTopRightRadius: number;
borderBottomRightRadius: number;
backgroundColor: string;
borderWidth: number;
borderColor: any;
};
squareJoinHollowRight: {
borderTopLeftRadius: number;
borderBottomLeftRadius: number;
borderTopRightRadius: number;
borderBottomRightRadius: number;
backgroundColor: string;
borderWidth: number;
borderColor: any;
};
ctrlSymbolHor: {
width: number;
height: number;
backgroundColor: string;
borderRadius: number;
};
ctrlSymboVer: {
position: string;
width: number;
height: number;
backgroundColor: string;
borderRadius: number;
};
ctrlSymbolSolid: {
backgroundColor: any;
};
ctrlText: {
alignItems: string;
justifyContent: string;
fontSize: number;
color: string;
borderRadius: number;
};
input: {
flex: number;
textAlign: string;
fontSize: number;
color: any;
textAlignVertical: string;
};
inputWithBorder: {
borderTopColor: any;
borderTopWidth: number;
borderBottomColor: any;
borderBottomWidth: number;
};
disabled: {
opacity: any;
};
};
export default _default;