@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
11 lines • 546 B
TypeScript
import * as React from 'react';
export interface NotificationDrawerProps extends React.HTMLProps<HTMLDivElement> {
/** Content rendered inside the notification drawer */
children?: React.ReactNode;
/** Additional classes added to the notification drawer */
className?: string;
/** @hide Forwarded ref */
innerRef?: React.Ref<any>;
}
export declare const NotificationDrawer: React.ForwardRefExoticComponent<Omit<NotificationDrawerProps, "ref"> & React.RefAttributes<any>>;
//# sourceMappingURL=NotificationDrawer.d.ts.map