7 lines
236 B
TypeScript
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">[]
|
|
}
|