summaryrefslogtreecommitdiff
path: root/src/components/elements
diff options
context:
space:
mode:
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>
);