UNPKG

282 BTypeScriptView Raw
1import * as React from 'react';
2
3import { BsPrefixComponent } from './helpers';
4
5export interface CardImgProps {
6 variant?: 'top' | 'bottom';
7}
8
9declare class CardImg<
10 As extends React.ElementType = 'img'
11> extends BsPrefixComponent<As, CardImgProps> {}
12
13export default CardImg;