import { ColorsStatus } from "@/constants/ColorsStatus"; import Styles from "@/constants/Styles"; import { Pressable, View } from "react-native"; import Text from "./Text"; type Props = { content: 'carousel' | 'page'; children: React.ReactNode; title: string headerColor: 'primary' | 'warning' onPress?: () => void contentPosition?: 'top' | 'center' titleTail?: number }; export default function PaperGridContent({ content, children, title, headerColor, onPress, contentPosition, titleTail }: Props) { return ( {title} {children} ) }