import React from 'react' import PropTypes from 'prop-types' import { TouchableOpacity } from 'react-native' import AppText from '../../common/app-text' import styles from '../../../styles' const SettingsButton = ({ children, style, secondary, ...props }) => { return ( {children} ) } SettingsButton.propTypes = { children: PropTypes.node, disabled: PropTypes.bool, onPress: PropTypes.func.isRequired, secondary: PropTypes.bool, style: PropTypes.object, } export default SettingsButton