Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Figure.d.ts 368B

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;