Juan Felipe Zapata Moreno c6c2f78d16 Initial Commit
2025-08-12 09:36:02 -06:00

20 lines
283 B
Vue

<script setup>
import Base from './Base.vue';
defineProps({
type: {
default: 'submit',
type: String
}
});
</script>
<template>
<Base
class="bg-secondary dark:bg-secondary-dark"
:type="type"
>
<slot />
</Base>
</template>