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.

15 lines 663 B
import * as React from 'react'; import type { BaseUIComponentProps } from "../../utils/types.js"; /** * A heading that labels the popover. * Renders an `<h2>` element. * * Documentation: [Base UI Popover](https://base-ui.com/react/components/popover) */ export declare const PopoverTitle: React.ForwardRefExoticComponent<PopoverTitleProps & React.RefAttributes<HTMLHeadingElement>>; export interface PopoverTitleState {} export interface PopoverTitleProps extends BaseUIComponentProps<'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6', PopoverTitle.State> {} export declare namespace PopoverTitle { type State = PopoverTitleState; type Props = PopoverTitleProps; }