2018-10-25 18:37:30 -05:00
|
|
|
<template>
|
|
|
|
<div class="ymxyweixqwsxauxldgpvecjepnwxbylu" :class="{ warn }">
|
2018-11-05 10:40:11 -06:00
|
|
|
<i v-if="warn"><fa icon="exclamation-triangle"/></i>
|
|
|
|
<i v-else><fa icon="info-circle"/></i>
|
2018-10-25 18:37:30 -05:00
|
|
|
<slot></slot>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
export default Vue.extend({
|
|
|
|
props: {
|
|
|
|
warn: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.ymxyweixqwsxauxldgpvecjepnwxbylu
|
|
|
|
margin 16px 0
|
|
|
|
padding 16px
|
|
|
|
font-size 90%
|
2018-10-31 04:07:00 -05:00
|
|
|
background var(--infoBg)
|
|
|
|
color var(--infoFg)
|
2018-10-25 18:37:30 -05:00
|
|
|
|
|
|
|
&.warn
|
|
|
|
background var(--infoWarnBg)
|
|
|
|
color var(--infoWarnFg)
|
2018-10-31 04:07:00 -05:00
|
|
|
|
|
|
|
&:first-child
|
|
|
|
margin-top 0
|
|
|
|
|
|
|
|
&:last-child
|
|
|
|
margin-bottom 0
|
|
|
|
|
|
|
|
> i
|
|
|
|
margin-right 4px
|
|
|
|
|
2018-10-25 18:37:30 -05:00
|
|
|
</style>
|