import React from 'react'; import { Text, StyleSheet } from 'react-native'; import PropTypes from 'prop-types'; import { themes } from '../../app/constants/colors'; const styles = StyleSheet.create({ separator: { marginTop: 30, marginLeft: 10, fontSize: 20, fontWeight: '300' } }); const Separator = ({ title, style, theme }) => ( {title} ); Separator.propTypes = { title: PropTypes.string.isRequired, theme: PropTypes.string, style: PropTypes.object }; export default Separator;