UNPKG

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