UNPKG

@base-ui/react

Version:

Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.

34 lines (32 loc) 1.01 kB
'use client'; import * as React from 'react'; import { usePopoverRootContext } from "../root/PopoverRootContext.js"; import { useRenderElement } from "../../internals/useRenderElement.js"; import { useBaseUiId } from "../../internals/useBaseUiId.js"; /** * A heading that labels the popover. * Renders an `<h2>` element. * * Documentation: [Base UI Popover](https://base-ui.com/react/components/popover) */ export const PopoverTitle = /*#__PURE__*/React.forwardRef(function PopoverTitle(componentProps, forwardedRef) { const { render, className, style, ...elementProps } = componentProps; const { store } = usePopoverRootContext(); const id = useBaseUiId(elementProps.id); store.useSyncedValueWithCleanup('titleElementId', id); const element = useRenderElement('h2', componentProps, { ref: forwardedRef, props: [{ id }, elementProps] }); return element; }); if (process.env.NODE_ENV !== "production") PopoverTitle.displayName = "PopoverTitle";