@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
19 lines (18 loc) • 520 B
TypeScript
import React from "react";
type DialogTitleProps = React.HTMLAttributes<HTMLHeadingElement>;
/**
* @see 🏷️ {@link DialogTitleProps}
* @example
* ```jsx
* <Dialog>
* <Dialog.Popup>
* <Dialog.Header>
* <Dialog.Title>Dialog title</Dialog.Title>
* </Dialog.Header>
* </Dialog.Popup>
* </Dialog>
* ```
*/
declare const DialogTitle: React.ForwardRefExoticComponent<DialogTitleProps & React.RefAttributes<HTMLHeadingElement>>;
export { DialogTitle };
export type { DialogTitleProps };