Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
12345678910111213 |
- import * as React from 'react';
-
- import { BsPrefixComponent } from './helpers';
-
- export interface CardImgProps {
- variant?: 'top' | 'bottom';
- }
-
- declare class CardImg<
- As extends React.ElementType = 'img'
- > extends BsPrefixComponent<As, CardImgProps> {}
-
- export default CardImg;
|