import { RiTerminalLine } from "@remixicon/react"; import { Alert, AlertDescription } from "@/components/ui/alert"; interface AuthErrorAlertProps { error: string; } export function AuthErrorAlert({ error }: AuthErrorAlertProps) { if (!error) return null; return ( {error} ); }