@ansible/ansible-ui-framework
Version:
A framework for building applications using PatternFly.
14 lines (13 loc) • 402 B
TypeScript
import { ReactNode } from 'react';
export interface IPageNotification {
id: string;
title: string;
description?: ReactNode | undefined;
timestamp?: string;
variant?: 'success' | 'danger' | 'warning' | 'info';
to?: string;
newTab?: boolean;
}
export declare function PageNotification(props: {
notification: IPageNotification;
}): import("react/jsx-runtime").JSX.Element;