@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
10 lines (9 loc) • 462 B
TypeScript
import { ToastRenderProps } from "./toast.types.js";
//#region src/toast/ToastItem.d.ts
interface ToastItemProps extends ToastRenderProps {
onClose?: () => void;
}
declare const ToastItem: import("react").MemoExoticComponent<({ action, content, icon, onClose, showDismissButton, size, status, text, textLayout, title }: ToastItemProps) => import("react").JSX.Element>;
//#endregion
export { ToastItem, ToastItemProps };
//# sourceMappingURL=ToastItem.d.ts.map