15 lines
405 B
Vue
15 lines
405 B
Vue
<script setup lang="ts">
|
|
import { Alert, AlertDescription, AlertTitle } from '@/lib/registry/default/ui/alert'
|
|
import { AlertCircle } from 'lucide-vue-next'
|
|
</script>
|
|
|
|
<template>
|
|
<Alert variant="destructive">
|
|
<AlertCircle class="w-4 h-4" />
|
|
<AlertTitle>Error</AlertTitle>
|
|
<AlertDescription>
|
|
Your session has expired. Please log in again.
|
|
</AlertDescription>
|
|
</Alert>
|
|
</template>
|