UNPKG

@base-ui-components/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.

39 lines (37 loc) 1.15 kB
'use client'; import * as React from 'react'; import { useIsoLayoutEffect } from '@base-ui-components/utils/useIsoLayoutEffect'; import { usePopoverRootContext } from "../root/PopoverRootContext.js"; import { useRenderElement } from "../../utils/useRenderElement.js"; import { useBaseUiId } from "../../utils/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, ...elementProps } = componentProps; const { setTitleId } = usePopoverRootContext(); const id = useBaseUiId(elementProps.id); useIsoLayoutEffect(() => { setTitleId(id); return () => { setTitleId(undefined); }; }, [setTitleId, id]); const element = useRenderElement('h2', componentProps, { ref: forwardedRef, props: [{ id }, elementProps] }); return element; }); if (process.env.NODE_ENV !== "production") PopoverTitle.displayName = "PopoverTitle";