@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
11 lines • 539 B
TypeScript
import * as React from 'react';
export interface NotificationDrawerListItemBodyProps extends React.HTMLProps<HTMLDivElement> {
/** Content rendered inside the list item body */
children?: React.ReactNode;
/** Additional classes added to the list item body */
className?: string;
/** List item timestamp */
timestamp?: React.ReactNode;
}
export declare const NotificationDrawerListItemBody: React.FunctionComponent<NotificationDrawerListItemBodyProps>;
//# sourceMappingURL=NotificationDrawerListItemBody.d.ts.map