import React from 'react'; import Module from '../../lib/Module'; import { View , StyleSheet , Text} from 'react-native'; import Types from '../../lib/Types'; import { Button } from 'react-native-elements' import Styles from './styles'; export default class ButtonComp extends Module { constructor(props) { super(props); } press(){ console.log("######You must over write this function@@@@@") } display() { let { title, textColor, width, height, borderRadius, FontSize, fontFamily, backgroundColor } = this.props; return (