'use client'; import type * as React from 'react'; import { AlertDialog as AlertDialogPrimitive } from 'radix-ui'; import { Button, cn } from '@gib/ui'; function AlertDialog({ ...props }: React.ComponentProps) { return ; } function AlertDialogTrigger({ ...props }: React.ComponentProps) { return ( ); } function AlertDialogPortal({ ...props }: React.ComponentProps) { return ( ); } function AlertDialogOverlay({ className, ...props }: React.ComponentProps) { return ( ); } function AlertDialogContent({ className, size = 'default', ...props }: React.ComponentProps & { size?: 'default' | 'sm'; }) { return ( ); } function AlertDialogHeader({ className, ...props }: React.ComponentProps<'div'>) { return (
); } function AlertDialogFooter({ className, ...props }: React.ComponentProps<'div'>) { return (
); } function AlertDialogMedia({ className, ...props }: React.ComponentProps<'div'>) { return (
); } function AlertDialogTitle({ className, ...props }: React.ComponentProps) { return ( ); } function AlertDialogDescription({ className, ...props }: React.ComponentProps) { return ( ); } function AlertDialogAction({ className, variant = 'default', size = 'default', ...props }: React.ComponentProps & Pick, 'variant' | 'size'>) { return ( ); } function AlertDialogCancel({ className, variant = 'outline', size = 'default', ...props }: React.ComponentProps & Pick, 'variant' | 'size'>) { return ( ); } export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, };