import React from 'react'; import { Dices, BoxIcon, PenLineIcon, LightbulbIcon, LineChartIcon, ShoppingBagIcon, PlaneTakeoffIcon, GraduationCapIcon, TerminalSquareIcon, } from 'lucide-react'; import { cn } from '~/utils'; const categoryIconMap: Record = { misc: BoxIcon, roleplay: Dices, write: PenLineIcon, idea: LightbulbIcon, shop: ShoppingBagIcon, finance: LineChartIcon, code: TerminalSquareIcon, travel: PlaneTakeoffIcon, teach_or_explain: GraduationCapIcon, }; const categoryColorMap: Record = { code: 'text-red-500', misc: 'text-blue-300', shop: 'text-purple-400', idea: 'text-yellow-300', write: 'text-purple-400', travel: 'text-yellow-300', finance: 'text-orange-400', roleplay: 'text-orange-400', teach_or_explain: 'text-blue-300', }; export default function CategoryIcon({ category, className = '', }: { category: string; className?: string; }) { const IconComponent = categoryIconMap[category]; const colorClass = categoryColorMap[category] + ' ' + className; if (!IconComponent) { return null; } return