automngr/resources/js/Components/Buttons/RestoreButton.vue

18 lines
432 B
Vue

<template>
<standard-button :href="href" :class="this.class + ' mb-3'" colour="green">
<unicon fill="white" class="mr-1" height="22" width="22" name="trash-alt"></unicon>
wiederherstellen
</standard-button>
</template>
<script>
import StandardButton from './StandardButton.vue';
export default {
components: { StandardButton },
props: {
class: String,
href: String,
},
}
</script>