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

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;