1234567891011121314151617181920212223 |
- import _extends from "@babel/runtime/helpers/esm/extends";
- import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
- import classNames from 'classnames';
- import React from 'react';
- import createWithBsPrefix from './utils/createWithBsPrefix';
- import { useBootstrapPrefix } from './ThemeProvider';
- var Media = React.forwardRef( // Need to define the default "as" during prop destructuring to be compatible with styled-components github.com/react-bootstrap/react-bootstrap/issues/3595
- function (_ref, ref) {
- var bsPrefix = _ref.bsPrefix,
- className = _ref.className,
- _ref$as = _ref.as,
- Component = _ref$as === void 0 ? 'div' : _ref$as,
- props = _objectWithoutPropertiesLoose(_ref, ["bsPrefix", "className", "as"]);
-
- var prefix = useBootstrapPrefix(bsPrefix, 'media');
- return React.createElement(Component, _extends({}, props, {
- ref: ref,
- className: classNames(className, prefix)
- }));
- });
- Media.displayName = 'Media';
- Media.Body = createWithBsPrefix('media-body');
- export default Media;
|