Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

14 wiersze
282 B

  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;