Files
parsshop/components/dashboard/wallet.tsx
2026-04-30 18:55:28 +03:30

17 lines
529 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
const WalletTab = ({ balance }:any) => {
return (
<div className="bg-gray-800 text-white p-6 sm:p-8 rounded-2xl mb-8">
<span className="text-gray-300 text-sm mb-2 block">
موجودی فعلی حساب شما:
</span>
<div className="text-3xl sm:text-4xl font-bold text-yellow-400">
{balance}
<span className="text-lg font-normal text-white"> تومان</span>
</div>
</div>
);
};
export default WalletTab;