it-tools/src/ui/c-alert/c-alert.vue
2023-11-01 10:53:02 +01:00

36 lines
922 B
Vue

<script lang="ts" setup>
import { useTheme } from './c-alert.theme';
const props = withDefaults(defineProps<{ type?: 'warning'; title?: string }>(), { type: 'warning', title: undefined });
const { type, title } = toRefs(props);
const theme = useTheme();
const variantTheme = computed(() => theme.value[type.value]);
</script>
<template>
<div class="c-alert" flex items-center b-rd-4px pa-5>
<div class="c-alert--icon" mr-4 text-40px op-60>
<slot name="icon">
<component :is="variantTheme.icon" />
</slot>
</div>
<div class="c-alert--content">
<div v-if="title" class="c-alert--title" text-15px fw-600>
{{ title }}
</div>
<slot />
</div>
</div>
</template>
<style lang="less" scoped>
.c-alert {
background-color: v-bind('variantTheme.backgroundColor');
color: v-bind('variantTheme.textColor');
font-size: inherit;
line-height: 20px;
}
</style>