From 33e878da846409868f623b36532b7d73a1a678d0 Mon Sep 17 00:00:00 2001 From: Fringg Date: Sat, 7 Feb 2026 04:14:35 +0300 Subject: [PATCH] feat: update payment method icons with brand-accurate favicon designs Replace generic placeholder icons with designs based on actual favicon assets from payment provider websites. Updated icons for Platega, Tribute, WATA, CloudPayments, Kassa AI, YooKassa, CryptoBot, Heleket, MulenPay, PAL24, and Freekassa with correct brand colors and marks. --- src/components/PaymentMethodIcon.tsx | 122 +++++++++++++++------------ 1 file changed, 70 insertions(+), 52 deletions(-) diff --git a/src/components/PaymentMethodIcon.tsx b/src/components/PaymentMethodIcon.tsx index 3f4aa1b..82da357 100644 --- a/src/components/PaymentMethodIcon.tsx +++ b/src/components/PaymentMethodIcon.tsx @@ -8,6 +8,7 @@ export default function PaymentMethodIcon({ className = 'h-8 w-8', }: PaymentMethodIconProps) { switch (method) { + // Telegram Stars — blue circle + gold star case 'telegram_stars': return ( @@ -19,139 +20,156 @@ export default function PaymentMethodIcon({ ); + // CryptoBot (app.cr.bot) — blue circle, white BTC-style ₿ mark case 'cryptobot': return ( ); + // YooKassa — blue circle, stylized "Ю" mark (vertical bar + ring) case 'yookassa': return ( - - - - + + ); + // Heleket — dark circle, green H-mark (from favicon.ico brand) case 'heleket': return ( - + ); + // MulenPay — red circle, white "M" letter mark case 'mulenpay': return ( - - + + ); + // PAL24 / PayPalych (pally.info) — green circle, white "P" mark case 'pal24': return ( - - - - P24 - - + + ); + // Platega — purple/blue gradient mark from favicon (triangle P shape) case 'platega': return ( - + + + + + + + + + ); + // WATA (wata.pro) — yellow-green square icon with black W/V shapes from favicon case 'wata': return ( - + - ); + // Freekassa — orange circle, white "F" mark case 'freekassa': return ( - - - FK - - + ); + // CloudPayments — blue circle with white checkmark cross from favicon.svg case 'cloudpayments': return ( - + + ); + // Tribute — blue gradient rounded square with white star/arrow from favicon case 'tribute': return ( - + + + + + + + + ); + // Kassa AI — orange circle with white "K" mark from brand case 'kassa_ai': return ( - - - - - - - - - - AI - - + + );