import React from 'react'; import {Pressable, Text, Dimensions} from 'react-native'; import tw from 'tailwind-react-native-classnames'; const fullWidth = Dimensions.get('window').width; export default function Pressable1({ title, backgroundColor, color, border, width, }) { return ( {title} ); }