UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

18 lines (17 loc) 613 B
import { CompoundStylesApiProps, Factory } from '../../core'; import { ModalBaseBodyProps } from '../ModalBase'; export type DrawerBodyStylesNames = 'body'; export interface DrawerBodyProps extends ModalBaseBodyProps, CompoundStylesApiProps<DrawerBodyFactory> { } export type DrawerBodyFactory = Factory<{ props: DrawerBodyProps; ref: HTMLDivElement; stylesNames: DrawerBodyStylesNames; compound: true; }>; export declare const DrawerBody: import("../../core").MantineComponent<{ props: DrawerBodyProps; ref: HTMLDivElement; stylesNames: DrawerBodyStylesNames; compound: true; }>;