@ukpc-lib/react 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2 @@
1
+ import { ToastContainerProps } from 'react-toastify';
2
+ export declare const ToastConfig: (props: ToastContainerProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export declare function ErrorIcon(): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export declare function SuccessIcon(): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export declare function WarningIcon(): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,5 @@
1
+ declare const pushSuccess: (message: string) => void;
2
+ declare const pushError: (message: string) => void;
3
+ declare const pushWarning: (message: string) => void;
4
+ export * from './ToastConfig';
5
+ export { pushError, pushSuccess, pushWarning };