Skip to content

Commit 90c129e

Browse files
authoredJan 28, 2024
types: fix card typings (#2660)
* types: fix card typings * chore: add changeset
1 parent 20e85d2 commit 90c129e

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed
 

‎.changeset/mighty-days-clean.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'nextra': patch
3+
---
4+
5+
children in Card component is required only if the image prop is true

‎packages/nextra/src/client/components/cards.tsx

+10-3
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,20 @@ function Card({
3434
href,
3535
...props
3636
}: {
37-
children: ReactNode
3837
title: string
3938
icon: ReactNode
40-
image?: boolean
4139
arrow?: boolean
4240
href: string
43-
}) {
41+
} & (
42+
| {
43+
children?: never
44+
image?: false
45+
}
46+
| {
47+
children: ReactNode
48+
image: true
49+
}
50+
)) {
4451
const animatedArrow = arrow ? arrowEl : null
4552

4653
if (image) {

0 commit comments

Comments
 (0)
Please sign in to comment.