@capgeminiuk/dcx-react-library
Version:
[](https://circleci.com/gh/Capgemini/dcx-react-library)
18 lines (17 loc) • 387 B
TypeScript
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 {};