import * as AlertDialogPrimitive from "@radix-ui/react-alert-dialog" import * as React from "react" import { alertButtonActionsVariants, alertContentStyle, alertDescriptionStyle, alertTitleStyle, dialogFooterStyle, dialogHeaderStyle, dialogOverlayStyle } from "./variants" const Root = AlertDialogPrimitive.Root const AlertDialogTrigger = AlertDialogPrimitive.Trigger const AlertDialogPortal = AlertDialogPrimitive.Portal const AlertDialogOverlay = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(function AlertDialogOverlayEloquent({ className, ...props }, ref) { return ( ) }) const AlertDialogContent = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(function AlertDialogContentEloquent({ className, ...props }, ref) { return ( ) }) const AlertDialogHeader = (function AlertDialogHeaderEloquent({ className, ...props }: React.HTMLAttributes) { return (
) }) const AlertDialogFooter = (function AlertDialogFooterEloquent({ className, ...props }: React.HTMLAttributes) { return (
) }) const AlertDialogTitle = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(function AlertDialogTitleEloquent({ className, ...props }, ref) { return ( ) }) const AlertDialogDescription = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(function AlertDialogDescriptionEloquent({ className, ...props }, ref) { return ( ) }) const AlertDialogAction = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(function AlertDialogActionEloquent({ className, ...props }, ref) { return ( ) }) const AlertDialogCancel = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(function AlertDialogCancelEloquent({ className, ...props }, ref) { return ( ) }) export const AlertDialog = { Root, Portal: AlertDialogPortal, Overlay: AlertDialogOverlay, Trigger: AlertDialogTrigger, Content: AlertDialogContent, Header: AlertDialogHeader, Footer: AlertDialogFooter, Title: AlertDialogTitle, Description: AlertDialogDescription, Action: AlertDialogAction, Cancel: AlertDialogCancel, }