19 lines
404 B
JavaScript
19 lines
404 B
JavaScript
import React from 'react';
|
|
import { StyleSheet } from 'react-native';
|
|
import PropTypes from 'prop-types';
|
|
|
|
import Separator from '../Separator';
|
|
|
|
const styles = StyleSheet.create({
|
|
separator: {
|
|
width: '100%',
|
|
alignSelf: 'center',
|
|
marginBottom: 16
|
|
}
|
|
});
|
|
|
|
export const Divider = ({ theme }) => <Separator style={styles.separator} theme={theme} />;
|
|
Divider.propTypes = {
|
|
theme: PropTypes.string
|
|
};
|