import React, { StyleSheet, Component, View, Text, TouchableOpacity } from "react-native"; const styles = StyleSheet.create({ root: { backgroundColor: "#ddd", borderRadius: 4, borderColor: "#ccc", borderWidth: 1, borderStyle: "solid", width: 150, padding: 10 }, text: { color: "#333" } }); class Button extends Component { render () { const { children, width, ...rest } = this.props; return ( {children} ); } } Button.propTypes = { }; module.exports = Button;