import {View, Text, Pressable} from "react-native"; const Button = ({text, color = "#E5352D", style, ...props}) => { return ( {text} ) } export default Button