@activecollab/components
Version:
ActiveCollab Components
17 lines • 769 B
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
const _excluded = ["children", "className"];
import React, { forwardRef } from "react";
import classnames from "classnames";
import { StyledMenuFooter } from "./Styles";
export const MenuFooter = /*#__PURE__*/forwardRef((_ref, ref) => {
let children = _ref.children,
className = _ref.className,
props = _objectWithoutPropertiesLoose(_ref, _excluded);
return /*#__PURE__*/React.createElement(StyledMenuFooter, _extends({}, props, {
className: classnames("c-menu-footer", className),
ref: ref
}), children);
});
MenuFooter.displayName = "MenuFooter";
//# sourceMappingURL=MenuFooter.js.map