UNPKG

@veracity/vui

Version:

Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.

11 lines (10 loc) 515 B
import { ToastRenderProps } from "./toast.types.js"; //#region src/toast/ToastItem.d.ts interface ToastItemProps extends ToastRenderProps { onClose?: () => void; } declare const ToastItemInner: ({ action, content, icon, onClose, showDismissButton, size, status, text, textLayout, title }: ToastItemProps) => import("react").JSX.Element; declare const ToastItem: import("react").MemoExoticComponent<typeof ToastItemInner>; //#endregion export { ToastItem, ToastItemProps }; //# sourceMappingURL=ToastItem.d.ts.map