UNPKG

247 BJavaScriptView Raw
1import { StyleSheet } from 'react-native';
2
3const styles = StyleSheet.create({
4 hr: {
5 height: 1,
6 marginBottom: 5,
7 backgroundColor: '#DCDEE5',
8 },
9 vh: {
10 width: 1,
11 backgroundColor: '#DCDEE5',
12 },
13});
14
15export default styles;