10 lines
154 B
TypeScript
10 lines
154 B
TypeScript
export type CardProps = {
|
|
link?: {
|
|
href: string
|
|
title: string
|
|
}
|
|
title?: string | null
|
|
subtitle?: string | null
|
|
openInNewTab?: boolean
|
|
}
|