Gazebo_simulation-Frontend/node_modules/react-bootstrap/Figure.d.ts

16 lines
368 B
TypeScript
Raw Normal View History

2020-12-21 11:29:31 -04:00
import * as React from 'react';
import FigureCaption from './FigureCaption';
import FigureImage from './FigureImage';
import { BsPrefixComponent } from './helpers';
declare class Figure<
As extends React.ElementType = 'figure'
> extends BsPrefixComponent<As> {
static Image: typeof FigureImage;
static Caption: typeof FigureCaption;
}
export default Figure;