import { Tag } from 'lucide-react'; import { Box } from './Box'; import { Icon } from './Icon'; export interface CategoryIconProps { category: string; size?: number; } export const CategoryIcon = ({ category, size = 24 }: CategoryIconProps) => { // Map categories to icons if needed, for now just use Tag return ( 20 ? 4 : 3} intent="low" /> ); };