pingcrm/resources/js/Shared/TrashedMessage.vue

22 lines
565 B
Vue
Raw Normal View History

2019-03-18 08:53:00 -03:00
<template>
<div class="p-4 bg-yellow-300 rounded flex items-center justify-between max-w-3xl">
2019-03-18 08:53:00 -03:00
<div class="flex items-center">
2019-05-22 12:53:51 -03:00
<icon name="trash" class="flex-shrink-0 w-4 h-4 fill-yellow-800 mr-2" />
<div class="text-sm font-medium text-yellow-800">
2019-03-18 08:53:00 -03:00
<slot />
</div>
</div>
2019-05-22 12:53:51 -03:00
<button class="text-sm text-yellow-800 hover:underline" tabindex="-1" type="button" @click="$emit('restore')">Restore</button>
2019-03-18 08:53:00 -03:00
</div>
</template>
<script>
import Icon from '@/Shared/Icon'
export default {
components: {
Icon,
},
}
</script>