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