react-bootstrap
Version:
Bootstrap 5 components built with React
11 lines • 337 B
JavaScript
import * as React from 'react';
import classNames from 'classnames';
import { jsx as _jsx } from "react/jsx-runtime";
export default (className =>
/*#__PURE__*/
// eslint-disable-next-line react/display-name
React.forwardRef((p, ref) => /*#__PURE__*/_jsx("div", {
...p,
ref: ref,
className: classNames(p.className, className)
})));