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.

18 lines 713 B
import type * as React from 'react'; import type { BaseUIComponentProps } from "../../utils/types.js"; /** * A paragraph with additional information about the drawer. * Renders a `<p>` element. * * Documentation: [Base UI Drawer](https://base-ui.com/react/components/drawer) */ export declare const DrawerDescription: DrawerDescription; export interface DrawerDescriptionProps extends BaseUIComponentProps<'p', DrawerDescription.State> {} export interface DrawerDescriptionState {} export interface DrawerDescription { (componentProps: DrawerDescriptionProps): React.JSX.Element; } export declare namespace DrawerDescription { type Props = DrawerDescriptionProps; type State = DrawerDescriptionState; }