mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
23 lines
959 B
JavaScript
23 lines
959 B
JavaScript
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
||
|
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
|
||
|
var _excluded = ["as", "bsPrefix", "children", "className"];
|
||
|
import classNames from 'classnames';
|
||
|
import React from 'react';
|
||
|
import { useBootstrapPrefix } from './ThemeProvider';
|
||
|
var CarouselItem = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
||
|
var _ref$as = _ref.as,
|
||
|
Component = _ref$as === void 0 ? 'div' : _ref$as,
|
||
|
bsPrefix = _ref.bsPrefix,
|
||
|
children = _ref.children,
|
||
|
className = _ref.className,
|
||
|
props = _objectWithoutPropertiesLoose(_ref, _excluded);
|
||
|
|
||
|
var finalClassName = classNames(className, useBootstrapPrefix(bsPrefix, 'carousel-item'));
|
||
|
return /*#__PURE__*/React.createElement(Component, _extends({
|
||
|
ref: ref
|
||
|
}, props, {
|
||
|
className: finalClassName
|
||
|
}), children);
|
||
|
});
|
||
|
CarouselItem.displayName = 'CarouselItem';
|
||
|
export default CarouselItem;
|