UNPKG

651 BTypeScriptView Raw
1import * as React from 'react';
2import { DrawerColorVariant } from './Drawer';
3export interface DrawerContentProps extends React.HTMLProps<HTMLDivElement> {
4 /** Additional classes added to the Drawer. */
5 className?: string;
6 /** Content to be rendered in the drawer. */
7 children?: React.ReactNode;
8 /** Content rendered in the drawer panel. */
9 panelContent: React.ReactNode;
10 /** Color variant of the background of the drawer panel */
11 colorVariant?: DrawerColorVariant | 'light-200' | 'default';
12}
13export declare const DrawerContent: React.FunctionComponent<DrawerContentProps>;
14//# sourceMappingURL=DrawerContent.d.ts.map
\No newline at end of file