summaryrefslogtreecommitdiff
path: root/src/lib/invoice/components
diff options
context:
space:
mode:
authorRafi Zadanly <zadanlyr@gmail.com>2023-04-08 10:12:31 +0700
committerRafi Zadanly <zadanlyr@gmail.com>2023-04-08 10:12:31 +0700
commit0ca62faf89775496320025c170c942b2cb3e1a20 (patch)
tree4107119c58e82aedf3478c165741824ff9cd08c1 /src/lib/invoice/components
parente7383ff9601e47953c732fccf093e19993ec37cd (diff)
update theme color
Diffstat (limited to 'src/lib/invoice/components')
-rw-r--r--src/lib/invoice/components/Invoice.jsx2
-rw-r--r--src/lib/invoice/components/Invoices.jsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/invoice/components/Invoice.jsx b/src/lib/invoice/components/Invoice.jsx
index 6012e4ea..1094e2e4 100644
--- a/src/lib/invoice/components/Invoice.jsx
+++ b/src/lib/invoice/components/Invoice.jsx
@@ -167,7 +167,7 @@ const Invoice = ({ id }) => {
{invoice.data?.efaktur ? (
<button
type='button'
- className='inline-block text-red_r-11'
+ className='inline-block text-danger-500'
onClick={() => downloadTaxInvoice(invoice?.data)}
>
Download
diff --git a/src/lib/invoice/components/Invoices.jsx b/src/lib/invoice/components/Invoices.jsx
index 51041316..6f7d54a0 100644
--- a/src/lib/invoice/components/Invoices.jsx
+++ b/src/lib/invoice/components/Invoices.jsx
@@ -80,7 +80,7 @@ const Invoices = () => {
<div className='grid grid-cols-2'>
<Link href={`/my/invoice/${invoice.id}`}>
<span className='text-caption-2 text-gray_r-11'>No. Invoice</span>
- <h2 className='text-red_r-11 mt-1'>{invoice.name}</h2>
+ <h2 className='text-danger-500 mt-1'>{invoice.name}</h2>
</Link>
<div className='flex gap-x-1 justify-end'>
{invoice.amountResidual > 0 ? (