"use client" import * as React from "react" import * as ToastPrimitives from "@radix-ui/react-toast" import { cn } from "@/lib/utils" const ToastProvider = ToastPrimitives.Provider const ToastViewport = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )) ToastViewport.displayName = ToastPrimitives.Viewport.displayName const Toast = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )) Toast.displayName = ToastPrimitives.Root.displayName const ToastAction = ToastPrimitives.Action const ToastClose = ToastPrimitives.Close const ToastTitle = ToastPrimitives.Title const ToastDescription = ToastPrimitives.Description export { ToastProvider, ToastViewport, Toast, ToastTitle, ToastDescription, ToastClose, ToastAction, }