UNPKG

@capgeminiuk/dcx-react-library

Version:

[![CircleCI](https://circleci.com/gh/Capgemini/dcx-react-library.svg?style=svg)](https://circleci.com/gh/Capgemini/dcx-react-library)

18 lines (17 loc) 387 B
import React from 'react'; type CardImageProps = { /** * Relevant classes for shared / reusable styling */ className?: string; /** * src of the image to add */ src: string; /** * alternative text of the image */ alt: string; } & React.HTMLAttributes<HTMLElement>; export declare const CardImage: React.FC<CardImageProps>; export {};