init
This commit is contained in:
14
components/ButtonArrow.vue
Normal file
14
components/ButtonArrow.vue
Normal file
@ -0,0 +1,14 @@
|
||||
<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>
|
Reference in New Issue
Block a user