Files
web/types/components/cardImage.ts
2024-10-08 08:53:41 +02:00

7 lines
236 B
TypeScript

import type { CardProps } from "@/components/TempDesignSystem/Card/card"
export interface CardImageProps extends React.HTMLAttributes<HTMLDivElement> {
card: CardProps | undefined
imageCards: Pick<CardProps, "backgroundImage">[]
}