UNPKG

355 BTypeScriptView Raw
1import * as React from 'react';
2import { CSSModule } from './utils';
3
4export interface CardImgProps
5 extends React.ImgHTMLAttributes<HTMLImageElement> {
6 [key: string]: any;
7 tag?: React.ElementType;
8 top?: boolean;
9 bottom?: boolean;
10 cssModule?: CSSModule;
11}
12
13declare class CardImg extends React.Component<CardImgProps> {}
14export default CardImg;