15 lines
318 B
Vue
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>
|