Toast is used to display brief status messages.
tsx
import { toast, Toaster } from "@/components/aspekt/toast";async function publishRelease(releaseId: string) { try { await publishReleaseById(releaseId); } catch { toast.destructive("Publish failed", { description: "Check the build output before trying again.", }); }} <Toaster autoClose colorful maxToasts={6} position="bottom-right" />