UNPKG

@heroui/navbar

Version:

A responsive navigation header positioned on top side of your page that includes support for branding, links, navigation, collapse and more.

61 lines (57 loc) 2.32 kB
"use client"; "use strict"; var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __hasOwnProp = Object.prototype.hasOwnProperty; var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); // src/navbar-content.tsx var navbar_content_exports = {}; __export(navbar_content_exports, { default: () => navbar_content_default }); module.exports = __toCommonJS(navbar_content_exports); var import_system = require("@heroui/system"); var import_react_utils2 = require("@heroui/react-utils"); var import_theme = require("@heroui/theme"); // src/navbar-context.ts var import_react_utils = require("@heroui/react-utils"); var [NavbarProvider, useNavbarContext] = (0, import_react_utils.createContext)({ name: "NavbarContext", strict: true, errorMessage: "useNavbarContext: `context` is undefined. Seems you forgot to wrap component within <Navbar />" }); // src/navbar-content.tsx var import_jsx_runtime = require("react/jsx-runtime"); var NavbarContent = (0, import_system.forwardRef)((props, ref) => { var _a; const { as, className, children, justify = "start", ...otherProps } = props; const Component = as || "ul"; const domRef = (0, import_react_utils2.useDOMRef)(ref); const { slots, classNames } = useNavbarContext(); const styles = (0, import_theme.cn)(classNames == null ? void 0 : classNames.content, className); return /* @__PURE__ */ (0, import_jsx_runtime.jsx)( Component, { ref: domRef, className: (_a = slots.content) == null ? void 0 : _a.call(slots, { class: styles }), "data-justify": justify, ...otherProps, children } ); }); NavbarContent.displayName = "HeroUI.NavbarContent"; var navbar_content_default = NavbarContent;