your-gold/components/ButtonArrow.vue
2025-05-28 15:56:01 +02:00

15 lines
318 B
Vue

<template>
<button :class="['text-inter text-lg h-[65px] px-[42px] rounded-[15px]', type === 'fill' ? 'bg-button text-text-dark' : 'border border-button text-button']">
<slot />
</button>
<div class=""></div>
</template>
<script lang="ts" setup>
defineProps({
type: {
type: String,
},
});
</script>