import React from "react"; import { TouchableOpacity, View } from "react-native"; import CustomText from "./Text"; type props = { title: string; size: string }; const Button = ({ title, size }: props) => ( {title} ); export default Button;