pedi2/resources/js/components/comunes/BotonLogin.vue

34 lines
645 B
Vue

<template>
<!-- <div class="buttons is-right">-->
<a class="button is-danger is-light is-small fixed-width" :href="href">
<span class="icon">
<i class="fa fa-solid fa-user-check"></i>
</span>
<span>
{{ nombre }}
</span>
</a>
<!-- </div>-->
</template>
<script>
export default {
props: {
nombre: {
type: String,
required: true
},
href: {
type: String,
required: true
},
},
}
</script>
<style>
.fixed-width {
min-width: 6rem;
}
</style>