31 lines
		
	
	
		
			667 B
		
	
	
	
		
			JavaScript
		
	
	
	
		
		
			
		
	
	
			31 lines
		
	
	
		
			667 B
		
	
	
	
		
			JavaScript
		
	
	
	
|  | import {StyleSheet} from "react-native"; | ||
|  | import {FontWeight, Typography} from "../../config/typography"; | ||
|  | import {Color} from "../../config/Color"; | ||
|  | 
 | ||
|  | export default StyleSheet.create({ | ||
|  |     default: { | ||
|  |         height: 56, | ||
|  |         borderRadius: 8, | ||
|  |         flexDirection: "row", | ||
|  |         justifyContent: "center", | ||
|  |         alignItems: "center", | ||
|  |         paddingHorizontal: 20 | ||
|  |     }, | ||
|  |     textDefault: { | ||
|  |         ...Typography.headline, | ||
|  |         color: Color.whiteColor, | ||
|  |         fontWeight: FontWeight.semibold | ||
|  |     }, | ||
|  |     outline: { | ||
|  |         borderWidth: 1 | ||
|  |     }, | ||
|  | 
 | ||
|  |     full: { | ||
|  |         width: "100%", | ||
|  |         alignSelf: "auto" | ||
|  |     }, | ||
|  |     round: { | ||
|  |         borderRadius: 28 | ||
|  |     } | ||
|  | }); |