Ви не можете вибрати більше 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;
|