15 lines
296 B
TypeScript
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
|
|
}
|