pedi2/resources/js/components/comunes/BotonLogin.vue
2025-02-10 22:37:02 -03:00

28 lines
551 B
Vue

<template>
<div class="buttons is-right">
<a class="button is-danger is-light is-small" :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>