Stat With Actions
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div class="bg-white rounded-lg shadow-md p-5 border border-gray-200">
<div class="text-sm font-medium text-gray-500">Account balance</div>
<div class="text-3xl font-bold text-gray-900 mt-1">$89,400</div>
<div class="mt-4">
<button class="px-3 py-1 bg-green-600 text-white text-xs font-medium rounded hover:bg-green-700 transition-colors">
Add funds
</button>
</div>
</div>
<div class="bg-white rounded-lg shadow-md p-5 border border-gray-200">
<div class="text-sm font-medium text-gray-500">Current balance</div>
<div class="text-3xl font-bold text-gray-900 mt-1">$89,400</div>
<div class="mt-4 flex space-x-2">
<button class="px-3 py-1 bg-gray-100 text-gray-700 text-xs font-medium rounded hover:bg-gray-200 transition-colors">
Withdrawal
</button>
<button class="px-3 py-1 bg-gray-100 text-gray-700 text-xs font-medium rounded hover:bg-gray-200 transition-colors">
Deposit
</button>
</div>
</div>
</div>
Copied to clipboard