From 2b464018180fe16dcb6103a98ada8db89c4af330 Mon Sep 17 00:00:00 2001
From: "pavan.kamath" <pavan.kamath@niveussolutions.com>
Date: Thu, 13 Jan 2022 14:41:21 +0530
Subject: [PATCH] classname precedence changed

---
 src/components/Card/index.jsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/components/Card/index.jsx b/src/components/Card/index.jsx
index 8e27d66..47bd75f 100644
--- a/src/components/Card/index.jsx
+++ b/src/components/Card/index.jsx
@@ -5,7 +5,7 @@ import styles from "./Card.module.scss";
 function Card(props) {
   const {customClass, children } = props;
   return (
-    <div className={cs(customClass, styles.card)} title="Copy to Clipboard">
+    <div className={cs(styles.card, customClass )} title="Copy to Clipboard">
       {children}
     </div>
   );
-- 
GitLab