.w-alert(v-if="show" :class="classes")
//- Add a wrapper around the content when needed.
template(v-if="type || icon || dismiss")
w-icon.w-alert__icon(v-if="type || icon") {{ type ? typeIcon : icon }}
.w-alert__content
slot
w-button.w-alert__dismiss(
v-if="dismiss"
@click="$emit('update:modelValue', show = false);$emit('input', false);$emit('close', false)"
icon="wi-cross"
color="inherit"
sm
text)
//- No wrapper case.
slot(v-else)