UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

19 lines (18 loc) 480 B
import React from "react"; type DialogBodyProps = React.HTMLAttributes<HTMLDivElement>; /** * @see 🏷️ {@link DialogBodyProps} * @example * ```jsx * <Dialog> * <Dialog.Popup> * <Dialog.Body> * Dialog body content * </Dialog.Body> * </Dialog.Popup> * </Dialog> * ``` */ declare const DialogBody: React.ForwardRefExoticComponent<DialogBodyProps & React.RefAttributes<HTMLDivElement>>; export { DialogBody }; export type { DialogBodyProps };