import Styles from "@/constants/Styles"; import { useTheme } from "@/providers/ThemeProvider"; import { Pressable, View } from "react-native"; import Text from "../Text"; type Props = { text: string; isSelected: boolean; isSign: boolean; onPress?: () => void; } export default function ItemDateCalendar({ text, isSelected, isSign, onPress }: Props) { const { colors } = useTheme() return ( <> {text} ) }