We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4827eb9 commit 5c86a3aCopy full SHA for 5c86a3a
src/CCard.js
@@ -49,15 +49,15 @@ const CCard = props=>{
49
<CCardHeader>
50
{headerSlot}
51
</CCardHeader>
52
- ): ''}
+ ): null}
53
<CCardBody {...bodyProps} className={bodyClassName}>
54
{children}
55
</CCardBody>
56
{footerSlot?(
57
<CCardFooter>
58
{footerSlot}
59
</CCardFooter>
60
61
</Tag>
62
);
63
@@ -99,7 +99,8 @@ CCard.propTypes = {
99
}
100
101
CCard.defaultProps = {
102
- tag: 'div'
+ tag: 'div',
103
+ custom: true
104
105
106
export default CCard;
0 commit comments