update pay ui

This commit is contained in:
2025-12-11 17:23:53 +08:00
parent 0599e2dad3
commit 3f87a3d1af
4 changed files with 13 additions and 13 deletions

View File

@@ -29,7 +29,7 @@ import {
useToast,
Badge,
} from '@chakra-ui/react';
import { TrendingUp, TrendingDown, DollarSign, AlertCircle, Zap } from 'lucide-react';
import { TrendingUp, TrendingDown, Coins, AlertCircle, Zap } from 'lucide-react';
import { motion } from 'framer-motion';
import { forumColors } from '@theme/forumTheme';
import {
@@ -231,7 +231,7 @@ const TradeModal = ({ isOpen, onClose, topic, mode = 'buy', onTradeSuccess }) =>
>
<HStack spacing="2">
<Icon
as={mode === 'buy' ? Zap : DollarSign}
as={mode === 'buy' ? Zap : Coins}
boxSize={{ base: "18px", sm: "20px" }}
color={forumColors.primary[500]}
/>
@@ -384,7 +384,7 @@ const TradeModal = ({ isOpen, onClose, topic, mode = 'buy', onTradeSuccess }) =>
<SliderFilledTrack bg={forumColors.gradients.goldPrimary} />
</SliderTrack>
<SliderThumb boxSize={{ base: "7", sm: "6" }} bg={forumColors.primary[500]}>
<Box as={Icon} as={DollarSign} boxSize={{ base: "14px", sm: "12px" }} color="white" />
<Box as={Icon} as={Coins} boxSize={{ base: "14px", sm: "12px" }} color="white" />
</SliderThumb>
</Slider>