@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
22 lines (21 loc) • 885 B
TypeScript
import { VuiComponent } from "../core/vui.js";
import "../core/index.js";
import { NotificationProps } from "./notification.types.js";
import { NotificationAction } from "./notificationAction.js";
import { NotificationIcon } from "./notificationIcon.js";
import { NotificationText } from "./notificationText.js";
import { NotificationTitle } from "./notificationTitle.js";
//#region src/notification/notification.d.ts
/**
* Displays informational content, like text and icon with optional action buttons.
* Handles multiple states, like info, error or loading.
*/
declare const Notification: VuiComponent<'div', NotificationProps> & {
Action: typeof NotificationAction;
Icon: typeof NotificationIcon;
Text: typeof NotificationText;
Title: typeof NotificationTitle;
};
//#endregion
export { Notification, Notification as default };
//# sourceMappingURL=notification.d.ts.map