UNPKG

513 BJavaScriptView Raw
1import classNames from 'classnames';
2import * as React from 'react';
3import Image, { propTypes as imagePropTypes } from './Image';
4import { jsx as _jsx } from "react/jsx-runtime";
5const FigureImage = /*#__PURE__*/React.forwardRef(({
6 className,
7 fluid = true,
8 ...props
9}, ref) => /*#__PURE__*/_jsx(Image, {
10 ref: ref,
11 ...props,
12 fluid: fluid,
13 className: classNames(className, 'figure-img')
14}));
15FigureImage.displayName = 'FigureImage';
16FigureImage.propTypes = imagePropTypes;
17export default FigureImage;
\No newline at end of file