import React from 'react'; import { StyleSheet, Text, TouchableOpacity, View } from 'react-native'; interface MoodCardCompactProps { onPress: () => void; } export function MoodCardCompact({ onPress }: MoodCardCompactProps) { return ( 心情 😊 记录今日心情 ); } const styles = StyleSheet.create({ container: { backgroundColor: '#E8F5E8', borderRadius: 16, padding: 16, minHeight: 100, }, header: { marginBottom: 8, }, title: { fontSize: 14, fontWeight: '800', color: '#192126', }, content: { flexDirection: 'row', alignItems: 'center', flex: 1, }, moodIcon: { width: 32, height: 32, borderRadius: 16, backgroundColor: '#4CAF50', justifyContent: 'center', alignItems: 'center', marginRight: 8, }, emoji: { fontSize: 16, }, moodText: { fontSize: 12, color: '#2E7D32', fontWeight: '600', flex: 1, }, });