og-image/src/ui/DownloadButton.vue
Simon Vieille eddd61f14a
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
apply linter
2023-02-26 17:44:43 +01:00

21 lines
573 B
Vue

<template>
<button
type="button"
class="px-4 py-2 text-sm font-medium text-gray-900 bg-white border border-gray-200 hover:bg-gray-100 hover:text-blue-700 focus:z-10 focus:ring-2 focus:ring-blue-700 focus:text-blue-700 dark:bg-gray-700 dark:border-gray-600 dark:text-white dark:hover:text-white dark:hover:bg-gray-600 dark:focus:ring-blue-500 dark:focus:text-white"
:class="$attrs.class"
v-text="label"
/>
</template>
<script>
export default {
props: {
label: {
type: String,
default: null,
required: true
},
}
}
</script>