react-bootstrap
Version:
Bootstrap 5 components built with React
8 lines (7 loc) • 347 B
TypeScript
import * as React from 'react';
import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
export interface CardImgProps extends BsPrefixProps, React.ImgHTMLAttributes<HTMLImageElement> {
variant?: 'top' | 'bottom' | string;
}
declare const CardImg: BsPrefixRefForwardingComponent<'img', CardImgProps>;
export default CardImg;