commerce/components/auth/login-message.tsx
2024-03-04 18:02:30 +00:00

13 lines
389 B
TypeScript

import { TriangleIcon } from 'lucide-react';
import { Alert, AlertDescription, AlertTitle } from 'components/ui/alert';
export function LoginMessage() {
return (
<Alert variant="destructive">
<TriangleIcon className="h-4 w-4" />
<AlertTitle>Error</AlertTitle>
<AlertDescription>Your session has expired. Please log in again.</AlertDescription>
</Alert>
);
}