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