import type { ComponentProps } from 'react' import { Alert, AlertAction, AlertDescription, AlertTitle, } from '@/components/reui/alert' import { cn } from '@cfdm/ui/lib/utils' export type AppAlertProps = ComponentProps export type AppAlertTitleProps = ComponentProps export type AppAlertDescriptionProps = ComponentProps export type AppAlertActionProps = ComponentProps /** Thin alias over ReUI Alert — prefer importing from `@/components/reui/alert` in new code. */ export function AppAlert({ className, ...props }: AppAlertProps) { return } export function AppAlertTitle({ className, ...props }: AppAlertTitleProps) { return } export function AppAlertDescription({ className, ...props }: AppAlertDescriptionProps) { return } export function AppAlertAction({ className, ...props }: AppAlertActionProps) { return }