@coinmeca/ui
Version:
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
12 lines • 450 B
TypeScript
import { type Notify as Content } from "../../../contexts/Notification";
import { Swipe } from "../../../hooks/useSwipe";
export interface Toast {
list?: Content[];
active?: boolean;
width?: number;
align?: "left" | "right";
style?: object;
swipe?: Swipe;
}
export default function Toast({ list, active, width, align, style, swipe }: Toast): false | import("react").JSX.Element | undefined;
//# sourceMappingURL=Toast.d.ts.map