Created
January 20, 2018 15:51
-
-
Save incleaf/a6d680d4b42517b54b5b4ba990afa3e8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { StyleSheet, ViewStyle, TextStyle } from 'react-native' | |
interface Styles { | |
wrapper: ViewStyle | |
text: TextStyle | |
} | |
const styles = StyleSheet.create<Styles>({ | |
wrapper: { | |
width: 68, | |
height: 34, | |
borderRadius: 16, | |
borderWidth: 2, | |
borderColor: '#0c2340', | |
justifyContent: 'center', | |
alignItems: 'center', | |
}, | |
text: { | |
fontSize: 12, | |
color: '#0c2340', | |
textAlign: 'center' | |
}, | |
}) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment