// TODO: Keep these synchronized with the API
export interface MoodDefinition {
id: string;
icon: string;
label: string;
};
export const MOODS: MoodDefinition[] = [
{ id: 'sad', icon: 'π’', label: 'Triste' },
{ id: 'neutral', icon: 'π', label: 'Neutro' },
{ id: 'good', icon: 'π', label: 'Bem' },
{ id: 'great', icon: 'π€©', label: 'Γtimo' },
{ id: 'angry', icon: 'π ', label: 'Irritado' },
];
// Lookup helper
export const getMood = (id: string) =>
MOODS.find((c) => c.id === id);