@carton-org/react-neumorphism
Version:
A React component library implementing the neumorphism design style
10 lines • 347 B
TypeScript
import { ExtendedToast } from './toast.type';
import { ScreenPosition } from '../../types';
interface ToastContainerProps {
toasts: ExtendedToast[];
removeToast: (id: string) => void;
position: ScreenPosition;
}
export declare const ToastContainer: React.FC<ToastContainerProps>;
export {};
//# sourceMappingURL=ToastContainer.d.ts.map