import Styles from "@/constants/Styles"; 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) { return ( <> {text} ) }