ui/components/Card/CardImage.d.ts

8 lines
158 B
TypeScript

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