Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
123456789101112131415 |
- import * as React from 'react';
-
- import FigureCaption from './FigureCaption';
- import FigureImage from './FigureImage';
-
- import { BsPrefixComponent } from './helpers';
-
- declare class Figure<
- As extends React.ElementType = 'figure'
- > extends BsPrefixComponent<As> {
- static Image: typeof FigureImage;
- static Caption: typeof FigureCaption;
- }
-
- export default Figure;
|