Files
web/components/TempDesignSystem/Card/card.ts
2024-05-14 11:24:19 +02:00

10 lines
154 B
TypeScript

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