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;