pingcrm/resources/js/Shared/TrashedMessage.vue

23 lines
587 B
Vue
Raw Permalink Normal View History

2019-03-18 08:53:00 -03:00
<template>
2021-12-08 14:52:56 -03:00
<div class="flex items-center justify-between p-4 max-w-3xl bg-yellow-400 rounded">
2019-03-18 08:53:00 -03:00
<div class="flex items-center">
2021-12-08 14:52:56 -03:00
<icon name="trash" class="flex-shrink-0 mr-2 w-4 h-4 fill-yellow-800" />
<div class="text-yellow-800 text-sm font-medium">
2019-03-18 08:53:00 -03:00
<slot />
</div>
</div>
2021-12-08 14:52:56 -03:00
<button class="text-yellow-800 hover:underline text-sm" 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,
},
2021-12-08 14:52:56 -03:00
emits: ['restore'],
2019-03-18 08:53:00 -03:00
}
</script>