mirror of
https://github.com/mmahdium/portfolio.git
synced 2026-08-17 05:24:30 +03:30
blog mvp completed
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
<template>
|
||||
<div :class="alertClass" class="my-4 flex items-center gap-2 rounded-lg px-4 py-3">
|
||||
<UIcon :name="icon" class="h-5 w-5 flex-shrink-0" />
|
||||
<div class="flex-1 text-sm">
|
||||
<slot />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
const props = withDefaults(
|
||||
defineProps<{
|
||||
type?: 'info' | 'warning' | 'success' | 'error'
|
||||
}>(),
|
||||
{
|
||||
type: 'info'
|
||||
}
|
||||
)
|
||||
|
||||
const typeConfig = {
|
||||
info: {
|
||||
icon: 'i-heroicons-information-circle',
|
||||
class: 'bg-blue-100 text-blue-800 dark:bg-blue-900/30 dark:text-blue-200'
|
||||
},
|
||||
warning: {
|
||||
icon: 'i-heroicons-exclamation-triangle',
|
||||
class: 'bg-yellow-100 text-yellow-800 dark:bg-yellow-900/30 dark:text-yellow-200'
|
||||
},
|
||||
success: {
|
||||
icon: 'i-heroicons-check-circle',
|
||||
class: 'bg-green-100 text-green-800 dark:bg-green-900/30 dark:text-green-200'
|
||||
},
|
||||
error: {
|
||||
icon: 'i-heroicons-x-circle',
|
||||
class: 'bg-red-100 text-red-800 dark:bg-red-900/30 dark:text-red-200'
|
||||
}
|
||||
}
|
||||
|
||||
const config = computed(() => typeConfig[props.type])
|
||||
const icon = computed(() => config.value.icon)
|
||||
const alertClass = computed(() => config.value.class)
|
||||
</script>
|
||||
Reference in New Issue
Block a user