Files
web/components/TempDesignSystem/Card/card.ts
2024-04-29 14:02:03 +02:00

10 lines
140 B
TypeScript

export type CardProps = {
link?: {
href: string
title: string
}
title?: string
subtitle?: string
openInNewTab?: boolean
}