Files
web/apps/scandic-web/components/ContentCard/contentCard.ts

15 lines
296 B
TypeScript

import type { ImageVaultAsset } from "@/types/components/imageVault"
export interface ContentCardProps {
link?: {
href: string
openInNewTab?: boolean
isExternal?: boolean
}
heading: string
image: ImageVaultAsset
bodyText: string
promoText?: string
className?: string
}