19 lines
337 B
Vue
19 lines
337 B
Vue
<template>
|
|
<div class="left-center ui-warning">
|
|
<UiIcon style="color: red">warning</UiIcon>
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
.ui-warning {
|
|
background-color: #ffeadf;
|
|
border: 1px solid #ff9c80;
|
|
padding: 0.5rem;
|
|
border-radius: 0.25rem;
|
|
}
|
|
</style> |