import { Wallet } from 'lucide-react'; interface LogoProps { size?: 'sm' | 'md' | 'lg'; showText?: boolean; } const sizeMap = { sm: { icon: 24, text: 'text-lg', }, md: { icon: 32, text: 'text-xl', }, lg: { icon: 40, text: 'text-2xl', }, }; export function Logo({ size = 'md', showText = true }: LogoProps) { const { icon, text } = sizeMap[size]; return (