GoScrobble/web/node_modules/react-bootstrap/esm/Image.js

60 lines
1.7 KiB
JavaScript
Raw Permalink Normal View History

2022-04-25 02:47:15 +00:00
import _extends from "@babel/runtime/helpers/esm/extends";
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
var _excluded = ["bsPrefix", "className", "fluid", "rounded", "roundedCircle", "thumbnail"];
import classNames from 'classnames';
import React from 'react';
import PropTypes from 'prop-types';
import { useBootstrapPrefix } from './ThemeProvider';
export var propTypes = {
/**
* @default 'img'
*/
bsPrefix: PropTypes.string,
/**
* Sets image as fluid image.
*/
fluid: PropTypes.bool,
/**
* Sets image shape as rounded.
*/
rounded: PropTypes.bool,
/**
* Sets image shape as circle.
*/
roundedCircle: PropTypes.bool,
/**
* Sets image shape as thumbnail.
*/
thumbnail: PropTypes.bool
};
var defaultProps = {
fluid: false,
rounded: false,
roundedCircle: false,
thumbnail: false
};
var Image = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
var bsPrefix = _ref.bsPrefix,
className = _ref.className,
fluid = _ref.fluid,
rounded = _ref.rounded,
roundedCircle = _ref.roundedCircle,
thumbnail = _ref.thumbnail,
props = _objectWithoutPropertiesLoose(_ref, _excluded);
bsPrefix = useBootstrapPrefix(bsPrefix, 'img');
var classes = classNames(fluid && bsPrefix + "-fluid", rounded && "rounded", roundedCircle && "rounded-circle", thumbnail && bsPrefix + "-thumbnail");
return /*#__PURE__*/React.createElement("img", _extends({
// eslint-disable-line jsx-a11y/alt-text
ref: ref
}, props, {
className: classNames(className, classes)
}));
});
Image.displayName = 'Image';
Image.defaultProps = defaultProps;
export default Image;