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.
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;
|