Skip to content
Snippets Groups Projects
Commit 2b464018 authored by Pavan Kamath's avatar Pavan Kamath
Browse files

classname precedence changed

parent df97a9c9
Branches
No related tags found
No related merge requests found
......@@ -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>
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment