import { ReactNode } from "react"; export interface ExpressionCardProps { prompt: string; categories: string[]; description: ReactNode; show_description?: boolean; } export function ExpressionCard({ prompt, categories, description, show_description }: ExpressionCardProps) { return (

{prompt}

{categories.join(", ")}

{show_description &&
{description}
}
); }