UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

11 lines (10 loc) 429 B
import React from 'react'; import type { ModalInnerProps } from '../../modal/parts/ModalInner'; type DrawerBodyProps = { /** * Give the inner content wrapper a class name (maps to `dnb-drawer__body`). */ className?: string; } & ModalInnerProps; export default function DrawerBody({ className, ref, ...props }: DrawerBodyProps & React.HTMLProps<HTMLElement>): import("react/jsx-runtime").JSX.Element; export {};