Files
web/types/components/cardImage.ts
Matilda Landström 22f3656b92 refactor(SW-296)
2024-10-08 08:53:41 +02:00

7 lines
225 B
TypeScript

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