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