Dashboard sipadu mbip
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

CardImg.d.ts 282B

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