Dashboard sipadu mbip
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
  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;