summaryrefslogtreecommitdiff
path: root/src/components/elements
diff options
context:
space:
mode:
authorRafi Zadanly <zadanlyr@gmail.com>2023-01-26 17:02:02 +0700
committerRafi Zadanly <zadanlyr@gmail.com>2023-01-26 17:02:02 +0700
commit902e5dabbb1ab0612764983c094af398e5f636ee (patch)
treeb1b33fed082204be057c50053aee15eede6cce25 /src/components/elements
parente340f5c4f4c47cde90e7676fcf71b55ef50e7c23 (diff)
Invoice and invoice detail
Diffstat (limited to 'src/components/elements')
-rw-r--r--src/components/elements/Disclosure.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/elements/Disclosure.js b/src/components/elements/Disclosure.js
index 584fa144..1f334be3 100644
--- a/src/components/elements/Disclosure.js
+++ b/src/components/elements/Disclosure.js
@@ -4,9 +4,9 @@ const Disclosure = ({ label, active, onClick }) => (
<div className={`flex justify-between p-4 ` + (active && 'bg-yellow_r-2')} onClick={onClick}>
<p className="font-medium leading-normal">{ label }</p>
{ onClick && ( active ? (
- <ChevronUpIcon className="w-5 h-5" />
+ <ChevronUpIcon className="w-5 h-5 stroke-2" />
) : (
- <ChevronDownIcon className="w-5 h-5" />
+ <ChevronDownIcon className="w-5 h-5 stroke-2" />
) ) }
</div>
);