UNPKG

@patternfly/react-core

Version:

This library provides a set of common React components for use with the PatternFly reference implementation.

11 lines 566 B
/// <reference types="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: import("react").ForwardRefExoticComponent<Omit<NotificationDrawerProps, "ref"> & import("react").RefAttributes<any>>; //# sourceMappingURL=NotificationDrawer.d.ts.map