8 lines
158 B
TypeScript
8 lines
158 B
TypeScript
|
import React from 'react';
|
||
|
type CardImageProps = {
|
||
|
src: string;
|
||
|
alt?: string;
|
||
|
};
|
||
|
export declare const CardImage: React.FC<CardImageProps>;
|
||
|
export {};
|