You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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;
|