import React, { memo } from 'react'; import { StyleSheet } from 'react-native'; import { Button as PaperButton } from 'react-native-paper'; import { theme } from '../core/theme'; const Button = ({ mode, style, children, ...props }) => ( {children} ); const styles = StyleSheet.create({ button: { width: '100%', marginVertical: 10, }, text: { fontWeight: 'bold', fontSize: 15, lineHeight: 26, }, }); export default memo(Button);