This repository has been archived on 2025-01-07. You can view files and clone it, but cannot push or open issues or pull requests.
rebuilding-acquia/src/components/Environment/ActionCardButton.vue

21 lines
470 B
Vue
Raw Normal View History

<template>
<button type="button" class="w-full flex flex-col items-center py-3 text-blue-300 text-xs font-bold no-underline hover:underline focus:underline hover:bg-grey-200 focus:bg-grey-lighter focus:outline-none block">
<slot></slot>
<span class="block" v-text="label"></span>
</button>
</template>
<script>
export default {
props: {
2019-03-30 00:09:48 +00:00
label: { type: String }
}
}
</script>
<style scoped>
svg {
@apply h-6 w-6 fill-current mb-2
}
</style>