UNPKG

react-native-elements

Version:
19 lines (14 loc) 341 B
import React from 'react' import { View, StyleSheet } from 'react-native' import colors from './config/colors' let styles = {} const Divider = ({style}) => ( <View style={[styles.container, style && style]} /> ) styles = StyleSheet.create({ container: { height: 1, backgroundColor: colors.grey5 } }) export default Divider