mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
19 lines
368 B
Vue
19 lines
368 B
Vue
<template>
|
|
<ButtonsBase :loading="loading" class="bg-pink-600 hover:bg-pink-500">
|
|
<slot />
|
|
</ButtonsBase>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import type { ButtonHTMLAttributes } from "vue";
|
|
|
|
interface Props extends /* @vue-ignore */ ButtonHTMLAttributes {}
|
|
|
|
defineProps<
|
|
Props & {
|
|
loading?: boolean;
|
|
}
|
|
>();
|
|
</script>
|
|
|
|
<style></style> |