22 lines
633 B
TypeScript
22 lines
633 B
TypeScript
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 (
|
|
<>
|
|
<Pressable style={{ alignItems: 'center' }} onPress={onPress}>
|
|
<Text style={[isSelected ? Styles.cWhite : Styles.cBlack]}>{text}</Text>
|
|
<View style={[Styles.signDate, { backgroundColor: isSign ? 'red' : 'transparent' }]}></View>
|
|
</Pressable>
|
|
</>
|
|
)
|
|
} |