frontend/components/buttons/primary.vue

15 lines
306 B
Vue
Raw Normal View History

<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>