import React from 'react'; import { StyleSheet, Text, TouchableOpacity, View } from 'react-native'; import { ThemedText } from './ThemedText'; import { ThemedView } from './ThemedView'; interface MoodCardProps { onPress: () => void; } export function MoodCard({ onPress }: MoodCardProps) { return ( 心情 记录你的每日心情 😊 点击记录今日心情 ); } const styles = StyleSheet.create({ container: { backgroundColor: '#fff', borderRadius: 16, padding: 16, marginBottom: 16, shadowColor: '#000', shadowOffset: { width: 0, height: 2, }, shadowOpacity: 0.1, shadowRadius: 3.84, elevation: 5, }, header: { marginBottom: 12, }, title: { fontSize: 18, fontWeight: '600', marginBottom: 4, }, subtitle: { fontSize: 14, opacity: 0.6, }, content: { flexDirection: 'row', alignItems: 'center', paddingVertical: 8, }, moodIcon: { width: 40, height: 40, borderRadius: 20, backgroundColor: '#f0f0f0', justifyContent: 'center', alignItems: 'center', marginRight: 12, }, emoji: { fontSize: 20, }, moodText: { fontSize: 16, flex: 1, }, });