Koha/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementsButtonEdit.vue
Jonathan Druart 539866d192
Bug 32030: ERM - Correctly style "Edit" and "Delete"
And add a whitespace between them.

Signed-off-by: Jonathan Field <jonathan.field@ptfs-europe.com>

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2022-11-08 09:43:39 -03:00

11 lines
217 B
Vue

<template>
<a class="btn btn-default btn-xs" role="button"
><i class="fa fa-pencil" aria-hidden="true" /> Edit</a
>
</template>
<script>
export default {
name: "AgreementsButtonEdit",
}
</script>