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.

32 lines (31 loc) 956 B
'use client'; import * as React from 'react'; import { useDialogRootContext } from "../root/DialogRootContext.js"; import { useRenderElement } from "../../utils/useRenderElement.js"; import { useBaseUiId } from "../../utils/useBaseUiId.js"; /** * A heading that labels the dialog. * Renders an `<h2>` element. * * Documentation: [Base UI Dialog](https://base-ui.com/react/components/dialog) */ export const DialogTitle = /*#__PURE__*/React.forwardRef(function DialogTitle(componentProps, forwardedRef) { const { render, className, id: idProp, ...elementProps } = componentProps; const { store } = useDialogRootContext(); const id = useBaseUiId(idProp); store.useSyncedValueWithCleanup('titleElementId', id); return useRenderElement('h2', componentProps, { ref: forwardedRef, props: [{ id }, elementProps] }); }); if (process.env.NODE_ENV !== "production") DialogTitle.displayName = "DialogTitle";