Skip to content

Instantly share code, notes, and snippets.

@incleaf
Created January 20, 2018 15:51
Show Gist options
  • Save incleaf/a6d680d4b42517b54b5b4ba990afa3e8 to your computer and use it in GitHub Desktop.
Save incleaf/a6d680d4b42517b54b5b4ba990afa3e8 to your computer and use it in GitHub Desktop.
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