@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 (20 loc) • 483 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