Dashboard sipadu mbip
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415
  1. import * as React from 'react';
  2. import FigureCaption from './FigureCaption';
  3. import FigureImage from './FigureImage';
  4. import { BsPrefixComponent } from './helpers';
  5. declare class Figure<
  6. As extends React.ElementType = 'figure'
  7. > extends BsPrefixComponent<As> {
  8. static Image: typeof FigureImage;
  9. static Caption: typeof FigureCaption;
  10. }
  11. export default Figure;