summaryrefslogtreecommitdiff
path: root/src/components/transactions/TransactionStatusBadge.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/transactions/TransactionStatusBadge.js')
-rw-r--r--src/components/transactions/TransactionStatusBadge.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/components/transactions/TransactionStatusBadge.js b/src/components/transactions/TransactionStatusBadge.js
index 588542fe..9551ec89 100644
--- a/src/components/transactions/TransactionStatusBadge.js
+++ b/src/components/transactions/TransactionStatusBadge.js
@@ -5,11 +5,11 @@ const TransactionStatusBadge = ({ status }) => {
};
switch (status) {
case 'cancel':
- badgeProps.className.push('badge-red');
+ badgeProps.className.push('badge-solid-red');
badgeProps.text = 'Batal'
break;
case 'draft':
- badgeProps.className.push('badge-gray');
+ badgeProps.className.push('badge-red');
badgeProps.text = 'Pending Quotation'
break;
case 'waiting':
@@ -17,15 +17,15 @@ const TransactionStatusBadge = ({ status }) => {
badgeProps.text = 'Menunggu Konfirmasi'
break;
case 'sale':
- badgeProps.className.push('badge-blue');
+ badgeProps.className.push('badge-yellow');
badgeProps.text = 'Pesanan Diproses'
break;
case 'shipping':
- badgeProps.className.push('badge-blue');
+ badgeProps.className.push('badge-green');
badgeProps.text = 'Pesanan Dikirim'
break;
case 'done':
- badgeProps.className.push('badge-green');
+ badgeProps.className.push('badge-solid-green');
badgeProps.text = 'Selesai'
break;
}